Fix formatting that was changed

This commit is contained in:
Prospector
2019-07-27 11:40:39 -07:00
parent fd386e7585
commit c4e1d33ade
4 changed files with 12 additions and 13 deletions

View File

@@ -4,9 +4,9 @@ import java.lang.reflect.Field;
import java.util.Arrays;
public class ReflectionHelper {
@SuppressWarnings("unchecked")
public static <T> T getValue(Class<?> cls, Object instance, String... names) {
public static <T> T getValue(Class<?> cls, Object instance, String...names) {
try {
return (T) getField(cls, names).get(instance);
} catch (IllegalAccessException e) {