Remove trailing whitespace
[unical.git] / gson / com / google / gson / LongSerializationPolicy.java
index 3d9a2da13dbf69ed33a9c01a7bc0cb1f06753452..a141189a5bd263c06bea2f9d1dc8f8e58b8f3059 100644 (file)
@@ -36,9 +36,9 @@ public enum LongSerializationPolicy {
       return new JsonPrimitive(value);
     }
   },
-  
+
   /**
-   * Serializes a long value as a quoted string.  For example, assume an object has a long field 
+   * Serializes a long value as a quoted string.  For example, assume an object has a long field
    * named "f" then the serialized output would be:
    * {@code {"f":"123"}}.
    */
@@ -47,7 +47,7 @@ public enum LongSerializationPolicy {
       return new JsonPrimitive(String.valueOf(value));
     }
   };
-  
+
   /**
    * Serialize this {@code value} using this serialization policy.
    *
This page took 0.00947 seconds and 4 git commands to generate.