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); }