Searched refs:loader2 (Results 1 – 2 of 2) sorted by relevance
95 public static boolean isChild (final ClassLoader loader1, ClassLoader loader2) in isChild() argument97 if (loader1 == loader2) return true; in isChild()98 if (loader2 == null) return false; in isChild()101 for ( ; loader2 != null; loader2 = loader2.getParent ()) in isChild()103 if (loader2 == loader1) return true; in isChild()
100 Yaml loader2 = new Yaml(new JodaPropertyConstructor()); in testLoadBeanWithBlockFlow() local101 MyBean parsed = (MyBean) loader2.load(doc1); in testLoadBeanWithBlockFlow()