flagged spurious serialization warnings from the libraries (we're not actually serializing things here)

pull/779/head
Justin Richer 2015-02-16 11:57:35 -05:00
parent 77c06e9557
commit a9544059cf
1 changed files with 2 additions and 0 deletions

View File

@ -97,6 +97,7 @@ public class JsonFileRegisteredClientService implements RegisteredClientService
/** /**
* Sync the map of clients out to disk. * Sync the map of clients out to disk.
*/ */
@SuppressWarnings("serial")
private void write() { private void write() {
try { try {
if (!file.exists()) { if (!file.exists()) {
@ -120,6 +121,7 @@ public class JsonFileRegisteredClientService implements RegisteredClientService
/** /**
* Load the map in from disk. * Load the map in from disk.
*/ */
@SuppressWarnings("serial")
private void load() { private void load() {
try { try {
if (!file.exists()) { if (!file.exists()) {