修改flop数组为单个对象 ,去除多余的 runner
This commit is contained in:
@@ -212,7 +212,7 @@ public class MSG
|
||||
protected SCHD schd;
|
||||
@XmlElement(name = "FLOP")
|
||||
@JsonProperty("FLOP")
|
||||
protected List<FLOP> flop;
|
||||
protected FLOP flop;
|
||||
@XmlElement(name = "WTHR")
|
||||
@JsonProperty("WTHR")
|
||||
protected List<WTHR> wthr;
|
||||
@@ -584,10 +584,7 @@ public class MSG
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FLOP> getFLOP() {
|
||||
if (flop == null) {
|
||||
flop = new ArrayList<FLOP>();
|
||||
}
|
||||
public FLOP getFLOP() {
|
||||
return this.flop;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user