StringTokenizer tokenizer;
String line;
- // Init number/string data values
+ // Init A lot variables
Long num = null;
Boolean bool = null;
Gender gender = null;
+ int count = 0;
+ Contact contact = null;
// Read all lines
while (!this.isEndOfFile()) {
// @TODO Move this into separate method
tokenizer = new StringTokenizer(line, ";");
- // Count round
- int count = 0;
-
- // Init contact object
- Contact contact = null;
+ // Reset variables
+ count = 0;
+ contact = null;
// The tokens are now available, so get all
while (tokenizer.hasMoreElements()) {