浏览代码

Makes StoredScriptSource implement ToXContentObject

Colin Goodheart-Smithe 8 年之前
父节点
当前提交
6d6a230f70
共有 1 个文件被更改,包括 2 次插入7 次删除
  1. 2 7
      core/src/main/java/org/elasticsearch/script/StoredScriptSource.java

+ 2 - 7
core/src/main/java/org/elasticsearch/script/StoredScriptSource.java

@@ -34,7 +34,7 @@ import org.elasticsearch.common.io.stream.Writeable;
 import org.elasticsearch.common.xcontent.NamedXContentRegistry;
 import org.elasticsearch.common.xcontent.ObjectParser;
 import org.elasticsearch.common.xcontent.ObjectParser.ValueType;
-import org.elasticsearch.common.xcontent.ToXContent;
+import org.elasticsearch.common.xcontent.ToXContentObject;
 import org.elasticsearch.common.xcontent.XContentBuilder;
 import org.elasticsearch.common.xcontent.XContentFactory;
 import org.elasticsearch.common.xcontent.XContentParser;
@@ -52,7 +52,7 @@ import java.util.Objects;
  * {@link StoredScriptSource} represents user-defined parameters for a script
  * saved in the {@link ClusterState}.
  */
-public class StoredScriptSource extends AbstractDiffable<StoredScriptSource> implements Writeable, ToXContent {
+public class StoredScriptSource extends AbstractDiffable<StoredScriptSource> implements Writeable, ToXContentObject {
 
     /**
      * Standard {@link ParseField} for outer level of stored script source.
@@ -426,11 +426,6 @@ public class StoredScriptSource extends AbstractDiffable<StoredScriptSource> imp
         return builder;
     }
 
-    @Override
-    public boolean isFragment() {
-        return false;
-    }
-
     /**
      * @return The language used for compiling this script.
      */