lagerkoller / fidgen

Automatically exported from code.google.com/p/fidgen
0 stars 0 forks source link

Corrupted tree files exported #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In the current version, exported tree files contain corrupted data if at
least one fiducial has been rejected. The corruption is due to wrongly
removing always the first marker in the list, instead of the last. The
issue has to do with some internal changes to the ArrayList.remove() method
(the same code works as expected with Strings). Overriding the equals()
method in FiducialNode fixes the issue for Java 6.

public boolean equals(Object o) {
  return toString().equals(o.toString());
}

What steps will reproduce the problem?

1. generate a marker, accept it by pressing A or S
2. reject the next marker by pressing X
3. press A or S again

Will check into SVN asap...

Original issue reported on code.google.com by toxmeister on 21 Jun 2009 at 11:47

GoogleCodeExporter commented 9 years ago

Original comment by toxmeister on 21 Jun 2009 at 11:47

GoogleCodeExporter commented 9 years ago
Added bugfix with revision #15. Needs further checking before next release.

Original comment by toxmeister on 22 Jun 2009 at 12:49

GoogleCodeExporter commented 9 years ago
New set of tree files has been produced by John Nussey for London College of 
Fashion
show. So closing bug and uploaded new release (0003)

Original comment by toxmeister on 13 Jul 2009 at 1:20