Package freenet.node.updater.MainJarDependenciesChecker

Examples of freenet.node.updater.MainJarDependenciesChecker.Dependency


              mainRHS = newMain;
            else
              mainRHS = rhs;
          } else {
            // Is it on the list of dependencies?
            Dependency dep = findDependencyByRHSFilename(new File(rhs));
            if(dep != null) {
                if(dep.oldFilename() != null)
                    System.out.println("Found old dependency "+dep.oldFilename());
                else
                    System.out.println("Found new dependency "+dep.newFilename());
            } else { // dep == null
                System.out.println("Found unknown jar in classpath, will keep: "+rhs);
              // If not, it's something the user has added, we just keep it.
              classpath.add(rhs);
            }
View Full Code Here

TOP

Related Classes of freenet.node.updater.MainJarDependenciesChecker.Dependency

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.