Commit 11f822b9 authored by Vladislav Kiselev's avatar Vladislav Kiselev

Исправлена ошибка в compareTo.

parent b69854c2
...@@ -1326,7 +1326,7 @@ public class ConversionUtil { ...@@ -1326,7 +1326,7 @@ public class ConversionUtil {
return Integer.compare(opId, o.opId); return Integer.compare(opId, o.opId);
} }
if (executorId != o.executorId) { if (executorId != o.executorId) {
return Integer.compare(opId, o.opId); return Integer.compare(executorId, o.executorId);
} }
if (! bunkerId.isPresent()) { if (! bunkerId.isPresent()) {
return (! o.bunkerId.isPresent()) ? 0 : -1; return (! o.bunkerId.isPresent()) ? 0 : -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment