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

Jean-Noël Rouvignac
27.14.2016 e0b21ba78e6d5ce50c8afe2682ed151cfa318311
Use LocalizableMessage.EMPTY
2 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/server/tools/dsreplication/ReplicationCliMain.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/test/java/org/opends/server/extensions/InitializationUtils.java 2 ●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/server/tools/dsreplication/ReplicationCliMain.java
@@ -200,7 +200,7 @@
  /** The value set by the dsreplication script if it is called the first time. */
  private static final String FIRST_SCRIPT_CALL = "firstcall";
  private static final LocalizableMessage EMPTY_MSG = LocalizableMessage.raw("");
  private static final LocalizableMessage EMPTY_MSG = LocalizableMessage.EMPTY;
  private boolean forceNonInteractive;
opendj-server-legacy/src/test/java/org/opends/server/extensions/InitializationUtils.java
@@ -131,7 +131,7 @@
    try {
      return AdminTestCaseUtils.getConfiguration(context, cfgDefn, Converters.from(cfgEntry));
    } catch (IllegalArgumentException e) {
      throw new ConfigException(LocalizableMessage.raw(""), e);
      throw new ConfigException(LocalizableMessage.EMPTY, e);
    }
  }
}