]> jfr.im git - irc/rizon/moo.git/commitdiff
Cleanup. It doesnt like this use of ~
authorAdam <redacted>
Fri, 26 Feb 2016 15:24:32 +0000 (10:24 -0500)
committerAdam <redacted>
Fri, 26 Feb 2016 15:24:32 +0000 (10:24 -0500)
moo.template.yml
moo/src/main/java/net/rizon/moo/ClassLoader.java

index 522784be60b05ab791a254e948abc8a3bbf2553d..d8fe45fc37ebd6765abf6cab1b5b37c429123322 100644 (file)
@@ -66,7 +66,7 @@ help_channels: ["#h"]
 mail:
   path: /usr/sbin/sendmail
 
-plugin_repository: ~/.m2/repository
+plugin_repository: c:/users/adam/.m2/repository
 
 plugins:
  - groupId: net.rizon
index 540ae3b22532d2274d4c3002c0cffbadac327d0c..657c313184714aa4fe343ff6d4a6801f64d99dc6 100644 (file)
@@ -42,11 +42,6 @@ public final class ClassLoader extends URLClassLoader
                }
                catch (ClassNotFoundException ex)
                {
-                       if (recurse && name.contains("Oline"))
-                       {
-                               ex.printStackTrace();
-                               int i = 5;
-                       }
                        if (recurse)
                                for (Plugin p : pluginManager.getPlugins())
                                        try
@@ -57,10 +52,6 @@ public final class ClassLoader extends URLClassLoader
                                        {
                                        }
 
-                       if (recurse && name.contains("Oline"))
-                       {
-                               int i = 5;
-                       }
                        throw ex;
                }
        }