flagged spurious serialization warnings from the libraries (we're not actually serializing things here)
parent
77c06e9557
commit
a9544059cf
|
@ -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()) {
|
||||||
|
|
Loading…
Reference in New Issue