Minor syntax fix

This commit is contained in:
Olof Larsson 2013-01-15 16:15:37 +01:00
parent 0185870205
commit cebdaebb2e
2 changed files with 3 additions and 10 deletions

View File

@ -739,10 +739,6 @@ public class ItemStackAdapterV2 implements JsonDeserializer<ItemStack>, JsonSeri
// -------------------------------------------- // // -------------------------------------------- //
public static ItemStackAdapterV2 i = new ItemStackAdapterV2(); public static ItemStackAdapterV2 i = new ItemStackAdapterV2();
public static ItemStackAdapterV2 get() { return i; }
public static ItemStackAdapterV2 get()
{
return i;
}
} }

View File

@ -47,9 +47,6 @@ public class MongoURIAdapter implements JsonDeserializer<MongoURI>, JsonSerializ
// INSTANCE // INSTANCE
// -------------------------------------------- // // -------------------------------------------- //
protected static MongoURIAdapter instance = new MongoURIAdapter(); protected static MongoURIAdapter i = new MongoURIAdapter();
public static MongoURIAdapter get() public static MongoURIAdapter get() { return i; }
{
return instance;
}
} }