From 704fbfaec353825b8f81b21b8531a5abee4f5481 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 9 Mar 2006 03:27:52 +0000 Subject: [PATCH] Removed debugging for a heisenbug that seems to be gone now. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3931 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/io/TypedArray.as | 3 --- src/as/com/threerings/io/streamers/ArrayStreamer.as | 1 - 2 files changed, 4 deletions(-) diff --git a/src/as/com/threerings/io/TypedArray.as b/src/as/com/threerings/io/TypedArray.as index 0c9ebc53b..476aa44ad 100644 --- a/src/as/com/threerings/io/TypedArray.as +++ b/src/as/com/threerings/io/TypedArray.as @@ -7,9 +7,6 @@ public dynamic class TypedArray extends Array public function TypedArray (jtype :String) { _jtype = jtype; - if (_jtype == "" || _jtype == null) { - Log.info("Created a typed array with bogus type {" + _jtype + "}"); - } } public function getJavaType () :String diff --git a/src/as/com/threerings/io/streamers/ArrayStreamer.as b/src/as/com/threerings/io/streamers/ArrayStreamer.as index 318fb7095..8e5023dfe 100644 --- a/src/as/com/threerings/io/streamers/ArrayStreamer.as +++ b/src/as/com/threerings/io/streamers/ArrayStreamer.as @@ -16,7 +16,6 @@ public class ArrayStreamer extends Streamer { public function ArrayStreamer (jname :String) { - Log.debug("Created an array streamer for type: {" + jname + "}"); super(TypedArray, jname); if (jname.charAt(1) === "[") {