Browse Source

无任务,编译失败

feature/big-screen
yaohwu 4 years ago
parent
commit
acbcffd977
  1. 4
      designer-realize/src/main/java/com/fr/design/mainframe/alphafine/cell/model/RobotModel.java

4
designer-realize/src/main/java/com/fr/design/mainframe/alphafine/cell/model/RobotModel.java

@ -50,7 +50,7 @@ public class RobotModel extends AlphaCellModel {
try {
String result = HttpToolbox.get(url);
if(StringUtils.isEmpty(result)){
if (StringUtils.isEmpty(result)) {
return StringUtils.EMPTY;
}
JSONObject jsonObject = new JSONObject(result);
@ -94,7 +94,7 @@ public class RobotModel extends AlphaCellModel {
@Override
public final boolean equals(Object obj) {
return obj instanceof RobotModel
&& AssistUtils.equals(this.title, ((RobotModel)obj).title)
&& AssistUtils.equals(this.title, ((RobotModel) obj).title)
&& AssistUtils.equals(this.content, ((RobotModel) obj).content);
}

Loading…
Cancel
Save