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

pgamba
17.13.2007 817536ece2008cbb4e82eb878bd8cbea1dfc7224
Fix 1891 - remove clone of received entries
1 files modified
3 ■■■■ changed files
opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java 3 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/replication/plugin/ReplicationDomain.java
@@ -2465,9 +2465,8 @@
        if (msg instanceof EntryMessage)
        {
          // FIXME
          EntryMessage entryMsg = (EntryMessage)msg;
          byte[] entryBytes = entryMsg.getEntryBytes().clone();
          byte[] entryBytes = entryMsg.getEntryBytes();
          ieContext.updateCounters();
          return entryBytes;
        }