diff options
author | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-24 16:45:41 +0530 |
---|---|---|
committer | Driptaroop Das <driptaroop.das@in.ibm.com> | 2019-01-24 16:45:53 +0530 |
commit | 7136e9a83d131d0618c2a340d80079dcf8ae3c3b (patch) | |
tree | e9e770672c4a6a510455b7eede72a6391b60fcfb /auth/auth-cmd/src/main | |
parent | 749bff255e3d7fd29d8cebaeb83eface0e587e19 (diff) |
update anonymous inner classes with lambdas
update anonymous inner classes of some files with lambdas
Issue-ID: AAF-731
Change-Id: Ifc37d1aef4017943a5d33ee7c89ca919df474436
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
Diffstat (limited to 'auth/auth-cmd/src/main')
-rw-r--r-- | auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/Cmd.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/Cmd.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/Cmd.java index 0597640f..49fd4869 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/Cmd.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/Cmd.java @@ -358,12 +358,7 @@ public abstract class Cmd { // Save Server time by Sorting locally List<Item> items = history.getItem(); - java.util.Collections.sort(items, new Comparator<Item>() { - @Override - public int compare(Item o1, Item o2) { - return o2.getTimestamp().compare(o1.getTimestamp()); - } - }); + java.util.Collections.sort(items, (Comparator<Item>) (o1, o2) -> o2.getTimestamp().compare(o1.getTimestamp())); for (History.Item item : items) { GregorianCalendar gc = item.getTimestamp().toGregorianCalendar(); |