X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Ftest%2Fcontext%2FContextUtils.java;h=3826a8710aeb63b7418c5b04c3283f692c961ddd;hb=1a4b784250a43f6c7421ab5d8567c3bfbf51e990;hp=ccf34fdcd937064dcec734220fb4c8329ab366c7;hpb=5cd89c0d086e1ed5999096ba358f8fc9352d322d;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/context/ContextUtils.java b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/context/ContextUtils.java index ccf34fdcd..3826a8710 100644 --- a/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/context/ContextUtils.java +++ b/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/context/ContextUtils.java @@ -139,7 +139,7 @@ public class ContextUtils { * Put into common map the values from child map which are not already * defined in common map. */ - private static void putNotContained(Map commonMap, + public static void putNotContained(Map commonMap, Map childMap) { for (String key : childMap.keySet()) { if (!commonMap.containsKey(key)) { @@ -149,7 +149,7 @@ public class ContextUtils { } /** Overrides child map values with the values already set in common map */ - private static void overrideContained(Map commonMap, + public static void overrideContained(Map commonMap, Map childMap) { for (String key : childMap.keySet()) { if (commonMap.containsKey(key)) {