trackeditor: remove invalid warning

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8474 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f482b80b0cd94d4219a6d4380a260760a54e24a0
Former-commit-id: 6cd38b559c17af42cdbdfdb4ed67a1706fc3e0af
This commit is contained in:
iobyte 2022-09-08 23:08:47 +00:00
parent 5ac45ca488
commit 8fa4bc945f

View file

@ -198,12 +198,6 @@ public class GeneralProperties extends PropertyPanel
// get the track name from the path
int index = tmpPath.lastIndexOf(sep);
String nameFromPath = tmpPath.substring(index + 1);
if (!nameFromPath.equals(tmpName))
{
// TODO Which one should we use?
System.out.println("different!!! name from path: " + nameFromPath + " name: " + tmpName);
}
// remove the track name from the path
String pathToCategory = tmpPath.substring(0, index);