(huh? already removed these)

This commit is contained in:
Glenn Maynard
2003-04-11 15:53:06 +00:00
parent d201c87897
commit 0a3da7bcba
-2
View File
@@ -189,7 +189,6 @@ bool NoteFieldPositioning::Mode::MatchesCurrentGame() const
* doesn't exist, return "". */ * doesn't exist, return "". */
int NoteFieldPositioning::GetID(const CString &name) const int NoteFieldPositioning::GetID(const CString &name) const
{ {
// LOG->Trace("look for %s", name.c_str());
for(unsigned i = 0; i < Modes.size(); ++i) for(unsigned i = 0; i < Modes.size(); ++i)
{ {
if(Modes[i].name.CompareNoCase(name)) if(Modes[i].name.CompareNoCase(name))
@@ -198,7 +197,6 @@ int NoteFieldPositioning::GetID(const CString &name) const
if(!Modes[i].MatchesCurrentGame()) if(!Modes[i].MatchesCurrentGame())
continue; continue;
LOG->Trace("found it");
return i; return i;
} }