Remove trailing whitespace
[unical.git] / gson / com / google / gson / internal / bind / TypeAdapters.java
index 8412ad533c71c4b6c4cb1b359a8c6dc4fa09e4f7..21a5f64d6797a6502bec2d56cbea7f9a75c7edb3 100644 (file)
@@ -362,7 +362,7 @@ public final class TypeAdapters {
       out.value(value);
     }
   };
-  
+
   public static final TypeAdapter<BigDecimal> BIG_DECIMAL = new TypeAdapter<BigDecimal>() {
     @Override public BigDecimal read(JsonReader in) throws IOException {
       if (in.peek() == JsonToken.NULL) {
@@ -380,7 +380,7 @@ public final class TypeAdapters {
       out.value(value);
     }
   };
-  
+
   public static final TypeAdapter<BigInteger> BIG_INTEGER = new TypeAdapter<BigInteger>() {
     @Override public BigInteger read(JsonReader in) throws IOException {
       if (in.peek() == JsonToken.NULL) {
This page took 0.009925 seconds and 4 git commands to generate.