From 3b5e4d3f689551e5d502e14bd43679d7c45ab1cc Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Mon, 7 Mar 2011 21:16:52 +0000 Subject: [PATCH] Fix the formatting of that comment... git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6521 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/main/java/com/threerings/io/Streamer.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/threerings/io/Streamer.java b/src/main/java/com/threerings/io/Streamer.java index 6a97a4129..a10c542be 100644 --- a/src/main/java/com/threerings/io/Streamer.java +++ b/src/main/java/com/threerings/io/Streamer.java @@ -528,10 +528,9 @@ public class Streamer List fields = Lists.newArrayList(); ClassUtil.getFields(_target, fields); - /** Checks whether or not we should stream the fields in alphabetical order. This ensures - * cross-JVM compatibility since Class.getDeclaredFields() does not define an order. Due - * to legacy issues, this is false by default. - */ + // Checks whether or not we should stream the fields in alphabetical order. This ensures + // cross-JVM compatibility since Class.getDeclaredFields() does not define an order. Due + // to legacy issues, this is false by default. if (Boolean.getBoolean("com.threerings.io.streamFieldsAlphabetically")) { Collections.sort(fields, FIELD_ALPHA_COMPARATOR); }