Skip to content
Snippets Groups Projects
Commit 6813792b authored by Thomas Oster's avatar Thomas Oster
Browse files

Fix: Missing 'break' in switch statement

parent b30084c2
No related branches found
No related tags found
No related merge requests found
......@@ -363,6 +363,7 @@ public class VectorOptimizer
// the result is now mostly sorted
// TODO somehow sort by intersecting area
break;
}
case SMALLEST_FIRST: {
......@@ -408,15 +409,8 @@ public class VectorOptimizer
Collections.sort(result,new SmallerComparator());
// the result is now mostly sorted
}
break;
}
}
return result;
}
......
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