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

gbellato
16.24.2009 c1440ef406cb9cb8015c232613d6cd2a7c493a7b
Fix a problem with a unit test using LinkedList.pop() which does not exist with JDK1.5
1 files modified
2 ■■■ changed files
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/TestSynchronousReplayQueue.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/TestSynchronousReplayQueue.java
@@ -108,7 +108,7 @@
  public UpdateToReplay take() throws InterruptedException
  {
    return list.pop();
    return list.removeFirst();
  }
  public UpdateToReplay element()