Skip to content
Snippets Groups Projects
Commit 70651f79 authored by anttil's avatar anttil
Browse files

SSDM-2885: remove java8 specific code

SVN: 35375
parent 5b14c5cc
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ public class EntityHistoryCreator ...@@ -76,7 +76,7 @@ public class EntityHistoryCreator
{ {
List<EntityModification> list = new ArrayList<>(current); List<EntityModification> list = new ArrayList<>(current);
list.add(modification); list.add(modification);
list.sort(new Comparator<EntityModification>() Collections.sort(list, new Comparator<EntityModification>()
{ {
@Override @Override
public int compare(EntityModification o1, EntityModification o2) public int compare(EntityModification o1, EntityModification o2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment