Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/Anywhere/src/org/litesoft/configuration/MapConfigDataAccessorFactory.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 - import org.litesoft.core.util.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 public class MapConfigDataAccessorFactory implements ConfigDataAccessorFactory
9 9 {
  @@ -16,12 +16,12 @@
16 16
17 17 public MapConfigDataAccessorFactory( String pLoadedFrom, String... pKeyValuePairs )
18 18 {
19 - this( pLoadedFrom, UtilsCommon.createHashMap( pKeyValuePairs ) );
19 + this( pLoadedFrom, Maps.createHashMap( pKeyValuePairs ) );
20 20 }
21 21
22 22 public MapConfigDataAccessorFactory( String[] pKeyValuePairs, String pLoadedFrom, String... pAdditionalKeyValuePairs )
23 23 {
24 - this( pLoadedFrom, UtilsCommon.populate( UtilsCommon.createHashMap( pKeyValuePairs ), pAdditionalKeyValuePairs ) );
24 + this( pLoadedFrom, Maps.populate( Maps.createHashMap( pKeyValuePairs ), pAdditionalKeyValuePairs ) );
25 25 }
26 26
27 27 @Override