diff --git a/stratosphere-dist/pom.xml b/sopremo-meteor-dist/pom.xml similarity index 96% rename from stratosphere-dist/pom.xml rename to sopremo-meteor-dist/pom.xml index 303f6d8dd..3711056ff 100644 --- a/stratosphere-dist/pom.xml +++ b/sopremo-meteor-dist/pom.xml @@ -11,8 +11,8 @@ 0.4 - stratosphere-dist - stratosphere-dist + sopremo-meteor-dist + sopremo-meteor-dist pom diff --git a/stratosphere-dist/src/main/assemblies/bin.xml b/sopremo-meteor-dist/src/main/assemblies/bin.xml similarity index 100% rename from stratosphere-dist/src/main/assemblies/bin.xml rename to sopremo-meteor-dist/src/main/assemblies/bin.xml diff --git a/stratosphere-dist/src/main/stratosphere-bin/LICENSE.txt b/sopremo-meteor-dist/src/main/stratosphere-bin/LICENSE.txt similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/LICENSE.txt rename to sopremo-meteor-dist/src/main/stratosphere-bin/LICENSE.txt diff --git a/stratosphere-dist/src/main/stratosphere-bin/README.txt b/sopremo-meteor-dist/src/main/stratosphere-bin/README.txt similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/README.txt rename to sopremo-meteor-dist/src/main/stratosphere-bin/README.txt diff --git a/stratosphere-dist/src/main/stratosphere-bin/bin/meteor-client.sh b/sopremo-meteor-dist/src/main/stratosphere-bin/bin/meteor-client.sh similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/bin/meteor-client.sh rename to sopremo-meteor-dist/src/main/stratosphere-bin/bin/meteor-client.sh diff --git a/stratosphere-dist/src/main/stratosphere-bin/bin/sopremo-server.sh b/sopremo-meteor-dist/src/main/stratosphere-bin/bin/sopremo-server.sh similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/bin/sopremo-server.sh rename to sopremo-meteor-dist/src/main/stratosphere-bin/bin/sopremo-server.sh diff --git a/stratosphere-dist/src/main/stratosphere-bin/bin/start-sopremo-server.sh b/sopremo-meteor-dist/src/main/stratosphere-bin/bin/start-sopremo-server.sh similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/bin/start-sopremo-server.sh rename to sopremo-meteor-dist/src/main/stratosphere-bin/bin/start-sopremo-server.sh diff --git a/stratosphere-dist/src/main/stratosphere-bin/bin/stop-sopremo-server.sh b/sopremo-meteor-dist/src/main/stratosphere-bin/bin/stop-sopremo-server.sh similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/bin/stop-sopremo-server.sh rename to sopremo-meteor-dist/src/main/stratosphere-bin/bin/stop-sopremo-server.sh diff --git a/stratosphere-dist/src/main/stratosphere-bin/conf/sopremo-user.xml b/sopremo-meteor-dist/src/main/stratosphere-bin/conf/sopremo-user.xml similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/conf/sopremo-user.xml rename to sopremo-meteor-dist/src/main/stratosphere-bin/conf/sopremo-user.xml diff --git a/stratosphere-dist/src/main/stratosphere-bin/docs/README b/sopremo-meteor-dist/src/main/stratosphere-bin/docs/README similarity index 100% rename from stratosphere-dist/src/main/stratosphere-bin/docs/README rename to sopremo-meteor-dist/src/main/stratosphere-bin/docs/README diff --git a/sopremo/sopremo-common/src/main/java/eu/stratosphere/sopremo/type/ObjectNode.java b/sopremo/sopremo-common/src/main/java/eu/stratosphere/sopremo/type/ObjectNode.java index e398ff424..0a24bd814 100644 --- a/sopremo/sopremo-common/src/main/java/eu/stratosphere/sopremo/type/ObjectNode.java +++ b/sopremo/sopremo-common/src/main/java/eu/stratosphere/sopremo/type/ObjectNode.java @@ -143,24 +143,6 @@ public final Class getType() { return IObjectNode.class; } - // - // @Override - // public IJsonNode readResolve(final DataInput in) throws IOException { - // final int len = in.readInt(); - // - // // performance optimization: reuse existing nodes - // Set currentKeys = new HashSet(this.children.keySet()); - // for (int i = 0; i < len; i++) { - // final String key = in.readUTF(); - // currentKeys.remove(key); - // this.children.put(key, SopremoUtil.deserializeNode(in, this.children.get(key))); - // } - // for (String currentKey : currentKeys) - // this.children.remove(currentKey); - // - // return this; - // } - @Override public int hashCode() { final int prime = 31;