From 167eb11d06199beec5abadb0a8e7537684cbb515 Mon Sep 17 00:00:00 2001 From: arvid Date: Tue, 14 Jan 2014 13:09:25 +0100 Subject: [PATCH] Renamed dist artifact --- .../pom.xml | 4 ++-- .../src/main/assemblies/bin.xml | 0 .../src/main/stratosphere-bin/LICENSE.txt | 0 .../src/main/stratosphere-bin/README.txt | 0 .../main/stratosphere-bin/bin/meteor-client.sh | 0 .../stratosphere-bin/bin/sopremo-server.sh | 0 .../bin/start-sopremo-server.sh | 0 .../bin/stop-sopremo-server.sh | 0 .../stratosphere-bin/conf/sopremo-user.xml | 0 .../src/main/stratosphere-bin/docs/README | 0 .../stratosphere/sopremo/type/ObjectNode.java | 18 ------------------ 11 files changed, 2 insertions(+), 20 deletions(-) rename {stratosphere-dist => sopremo-meteor-dist}/pom.xml (96%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/assemblies/bin.xml (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/LICENSE.txt (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/README.txt (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/bin/meteor-client.sh (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/bin/sopremo-server.sh (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/bin/start-sopremo-server.sh (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/bin/stop-sopremo-server.sh (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/conf/sopremo-user.xml (100%) rename {stratosphere-dist => sopremo-meteor-dist}/src/main/stratosphere-bin/docs/README (100%) 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;