Fix the formatting of that comment...

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6521 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Mike Thomas
2011-03-07 21:16:52 +00:00
parent 24d126dd63
commit 3b5e4d3f68
@@ -528,10 +528,9 @@ public class Streamer
List<Field> 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);
}