We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4527272 commit 48741b4Copy full SHA for 48741b4
lib/java/com/google/android/material/color/ColorResourcesTableCreator.java
@@ -58,7 +58,7 @@ private ColorResourcesTableCreator() {}
58
new Comparator<ColorResource>() {
59
@Override
60
public int compare(ColorResource res1, ColorResource res2) {
61
- return Short.compare(res1.entryId, res2.entryId);
+ return res1.entryId - res2.entryId;
62
}
63
};
64
0 commit comments