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

Yannick Lecaillez
18.51.2015 c5f174d02277557d0f2236b67a4a8f0be9e47e49
opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/Utils.java
@@ -51,8 +51,12 @@
    assertIdsEquals(actual.iterator(), expected);
  }
  public static EntryID id(long id) {
    return new EntryID(id);
  }
  private static List<EntryID> asList(long... array) {
    List<EntryID> list = new ArrayList<EntryID>(array.length);
    List<EntryID> list = new ArrayList<>(array.length);
    for(long l : array) {
      list.add(new EntryID(l));
    }