undid autoformatting again

pull/1385/head
Evan Lennick 2018-04-23 14:30:43 -04:00
parent 011bf8adb8
commit fe000d91cb
1 changed files with 19 additions and 12 deletions

View File

@ -16,18 +16,6 @@
package org.mitre.openid.connect.config;
import com.google.common.base.Splitter;
import com.google.gson.JsonElement;
import com.google.gson.JsonIOException;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.gson.JsonSyntaxException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.AbstractMessageSource;
import org.springframework.core.io.Resource;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
@ -40,6 +28,19 @@ import java.util.List;
import java.util.Locale;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.AbstractMessageSource;
import org.springframework.core.io.Resource;
import com.google.common.base.Splitter;
import com.google.gson.JsonElement;
import com.google.gson.JsonIOException;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import com.google.gson.JsonSyntaxException;
/**
* @author jricher
*/
@ -81,6 +82,9 @@ public class JsonMessageSource extends AbstractMessageSource {
/**
* Get a value from the set of maps, taking the first match in order
* @param code
* @param langs
* @return
*/
private String getValue(String code, List<JsonObject> langs) {
if (langs == null || langs.isEmpty()) {
@ -102,6 +106,9 @@ public class JsonMessageSource extends AbstractMessageSource {
/**
* Get a value from a single map
* @param code
* @param lang
* @return
*/
private String getValue(String code, JsonObject lang) {