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

gbellato
16.24.2009 a29d6b968d8b00f2e892c5cacf5a1e51a58eebba
Fix a problem with a unit test using LinkedList.pop() which does not exist with JDK1.5
1 files modified
2 ■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/TestSynchronousReplayQueue.java 2 ●●● patch | view | raw | blame | history
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()