Revert "Merge branch 'speckle-rejection' into 'ui-integration'"

This reverts merge request !21
This commit is contained in:
ori agranat
2019-10-23 23:03:32 +00:00
parent f87806519a
commit 081fc1f9a2
14 changed files with 124 additions and 37 deletions

View File

@@ -26,7 +26,7 @@ public class Utilities {
}
public static List<Integer> getDigits(int num) {
List<Integer> digits = new ArrayList<>();
List<Integer> digits = new ArrayList<Integer>();
collectDigits(num, digits);
return digits;
}