mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
20.11.2014 b30f406570114a5a7de645fd46fc7b4bc619fb09
opendj-server/src/main/java/org/forgerock/opendj/server/setup/model/DataConfiguration.java
@@ -85,19 +85,19 @@
    }
    public boolean isOnlyBaseEntry() {
        return (type == Type.BASE_ENTRY_ONLY);
        return type == Type.BASE_ENTRY_ONLY;
    }
    public boolean isEmptyDatabase() {
        return (type == Type.EMPTY_DATABASE);
        return type == Type.EMPTY_DATABASE;
    }
    public boolean isImportLDIF() {
        return (type == Type.IMPORT_LDIF);
        return type == Type.IMPORT_LDIF;
    }
    public boolean isAutomaticallyImportGenerated() {
        return (type == Type.AUTOMATICALLY_GENERATED);
        return type == Type.AUTOMATICALLY_GENERATED;
    }
    public File getLdifImportDataPath() {