From: Mark Slee Date: Wed, 11 Apr 2007 08:57:07 +0000 (+0000) Subject: Fix messed up noninitialized things X-Git-Tag: 0.2.0~1376 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=cbc51600eea9c429057349e8f3ac9239479274b0;p=common%2Fthrift.git Fix messed up noninitialized things Reviewed By: danli git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665096 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/java/src/TestServer.java b/test/java/src/TestServer.java index d89ea210..6f1643e2 100644 --- a/test/java/src/TestServer.java +++ b/test/java/src/TestServer.java @@ -163,6 +163,9 @@ public class TestServer { goodbye.i64_thing = (long)4; Insanity crazy = new Insanity(); + crazy.userMap = new HashMap(); + crazy.xtructs = new ArrayList(); + crazy.userMap.put(Numberz.EIGHT, (long)8); crazy.xtructs.add(goodbye);