joshcalafell / WordSleuth-Android

An anagram and subword finder for Android
2 stars 0 forks source link

legacy code, use hashmap #22

Closed redragonx closed 9 years ago

redragonx commented 9 years ago
// Result types
private final static int resultTypeAnagram = 0x0;
private final static int resultTypeSubword = 0x1;
private final static int resultTypeCombo = 0x2;

// Array to hold the result types int values. TODO, if we don't need this get rid of it...
private final static int[] resultTypes = {resultTypeAnagram, resultTypeSubword, resultTypeCombo}
joshcalafell commented 9 years ago

I just erased it in the end