Temporary use current class loader

This commit is contained in:
Taro L. Saito 2011-06-24 14:24:28 +09:00
parent 4a7694e295
commit 06ba339352
1 changed files with 3 additions and 3 deletions

View File

@ -86,9 +86,9 @@ public class SnappyLoader
private static ClassLoader getAncestorClassLoader() {
ClassLoader cl = SnappyLoader.class.getClassLoader();
while (cl.getParent() != null) {
cl = cl.getParent();
}
// while (cl.getParent() != null) {
// cl = cl.getParent();
// }
return cl;
}