Compare commits

..

No commits in common. "8d24604707e5916e4acaf18e5f5acbb1d3c8b507" and "4c800cfd89f76d073c7ebe3397e9048f2ea7b69e" have entirely different histories.

2 changed files with 1 additions and 6 deletions

View File

@ -31,10 +31,5 @@ public interface ReflectedMethodFactory<I extends Object, C extends Object> {
private ParserResults() {} private ParserResults() {}
@SuppressWarnings("unchecked")
public <T extends Object> T get(Class<? extends MethodParser> key) {
return (T) super.get(key);
}
} }
} }

View File

@ -37,7 +37,7 @@ public class ReflectedMethodFactoryImpl<I extends Object, C extends Object> impl
.findFirst(); .findFirst();
if (rmethod.isEmpty()) if (rmethod.isEmpty())
logger.warn("Could not produce a ReflectedMethod for Method {} in {}", ReflectionUtil.getFullMethodName(method), this); logger.warn("Could not produce a ReflectedMethod for Method {} in ", ReflectionUtil.getFullMethodName(method), this);
else else
logger.debug("Produced {} for Method {} in {}", rmethod.get(), ReflectionUtil.getFullMethodName(method), this); logger.debug("Produced {} for Method {} in {}", rmethod.get(), ReflectionUtil.getFullMethodName(method), this);