mirror of
https://github.com/Maschell/JNUSLib.git
synced 2024-11-25 17:36:55 +01:00
Use a lambda expression to simplify the sorting in WUDPartitionHeader
This commit is contained in:
parent
d713a3d735
commit
de322b9ebc
@ -72,12 +72,7 @@ public final class WUDPartitionHeader {
|
|||||||
|
|
||||||
// We have to make sure, that the list is ordered by index
|
// We have to make sure, that the list is ordered by index
|
||||||
List<Content> contents = new ArrayList<>(allContents.values());
|
List<Content> contents = new ArrayList<>(allContents.values());
|
||||||
Collections.sort(contents, new Comparator<Content>() {
|
Collections.sort(contents, (o1, o2) -> Short.compare(o1.getIndex(), o2.getIndex()));
|
||||||
@Override
|
|
||||||
public int compare(Content o1, Content o2) {
|
|
||||||
return Short.compare(o1.getIndex(), o2.getIndex());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
for (Content c : allContents.values()) {
|
for (Content c : allContents.values()) {
|
||||||
if (!c.isHashed() || !c.isEncrypted()) {
|
if (!c.isHashed() || !c.isEncrypted()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user