修改flop数组为单个对象 ,去除多余的 runner

This commit is contained in:
zhouxiunai
2019-01-08 10:06:02 +08:00
parent 02300928d3
commit cf31345289
4 changed files with 4 additions and 131 deletions
@@ -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;
}