rosemarybeetle / Hive-Mind-Fortune-Reader

Code for an attempt to make a physical fortune-teller automaton with socially-seed thoughts to create the fortune readings from
makingweirdstuff.blogspot.com
0 stars 0 forks source link

words ArrayList is building cumulatively causing duplicates #39

Closed rosemarybeetle closed 11 years ago

rosemarybeetle commented 11 years ago

the words ArrayList should just add all the newly stripped tweet words processing one tweet after the next in sequence Sort of add 1 add 2 add 3 add 4

but it is actuallt starting from tweet[0] each time, so building a list thus add 1 add 12 add 123 add 1234

rosemarybeetle commented 11 years ago

Resolved, a for loop was nested inside another instead of following it