Skip to content

Commit

Permalink
修复兼容性问题
Browse files Browse the repository at this point in the history
修复兼容性问题,修改处原语法不支持JDK6
  • Loading branch information
JoeKerouac committed Apr 4, 2018
2 parents a576fa9 + 93ad8b7 commit cf316a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class ModuleClassLoader extends URLClassLoader {
/**
* 需要排除的包
*/
private final Set<String> excludedPackages = new HashSet<>();
private final Set<String> excludedPackages = new HashSet<String>();

/**
* 需要子加载器优先加载的包
Expand Down

0 comments on commit cf316a4

Please sign in to comment.