Skip to content

Commit

Permalink
Expose finding of class to subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
fhoeben committed Feb 25, 2015
1 parent c9ba3c5 commit a7b6a3f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ private Object newInstance(Object[] args, Constructor<?> constructor)
return newInstance(constructor, initargs);
}

private Class<?> searchPathsForClass(List<String> paths, String className) {
protected Class<?> searchPathsForClass(List<String> paths, String className) {
Class<?> k = getClass(className);
if (k != null) {
return k;
Expand Down

0 comments on commit a7b6a3f

Please sign in to comment.