Changeset 834:3029325e3e42


Ignore:
Timestamp:
01/30/12 15:57:10 (4 months ago)
Author:
xeraph@xeraph-pc.office.nchovy.net
Branch:
default
Message:

updated kraken-core's confdb dependency to 0.7.0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kraken-confdb/src/main/java/org/krakenapps/confdb/file/FileConfigDatabase.java

    r829 r834  
    514514        @Override 
    515515        public ConfigIterator findAll(Class<?> cls) { 
    516                 ConfigCollection collection = getCollection(cls); 
     516                ConfigCollection collection = ensureCollection(cls); 
    517517                if (collection == null) 
    518518                        return null; 
     
    523523        @Override 
    524524        public ConfigIterator find(Class<?> cls, Predicate pred) { 
    525                 ConfigCollection collection = getCollection(cls); 
     525                ConfigCollection collection = ensureCollection(cls); 
    526526                if (collection == null) 
    527527                        return null; 
     
    532532        @Override 
    533533        public Config findOne(Class<?> cls, Predicate pred) { 
    534                 ConfigCollection collection = getCollection(cls); 
     534                ConfigCollection collection = ensureCollection(cls); 
    535535                if (collection == null) 
    536536                        return null; 
  • kraken-core/pom.xml

    r831 r834  
    99        </parent> 
    1010        <artifactId>kraken-core</artifactId> 
    11         <version>1.13.2</version> 
     11        <version>1.14.0</version> 
    1212        <name>Kraken Core</name> 
    1313        <packaging>jar</packaging> 
     
    4141                        <groupId>org.krakenapps</groupId> 
    4242                        <artifactId>kraken-confdb</artifactId> 
    43                         <version>0.6.1</version> 
     43                        <version>0.7.0</version> 
    4444                </dependency> 
    4545                <dependency> 
Note: See TracChangeset for help on using the changeset viewer.