mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-01-06 10:15:18 +08:00
Fix little bug
This commit is contained in:
parent
14ce9e23a4
commit
7a573efde1
@ -86,7 +86,7 @@ public class GraphBuilder {
|
||||
int[][] incomingEdgeList = new int[sz][];
|
||||
for (int i = 0; i < sz; ++i) {
|
||||
incomingEdgeList[i] = incomingEdges[i].toArray();
|
||||
Arrays.sort(incomingEdgeList);
|
||||
Arrays.sort(incomingEdgeList[i]);
|
||||
}
|
||||
builtGraph = new GraphImpl(incomingEdgeList, outgoingEdgeList);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user