Skip to content

Commit

Permalink
Bug 736031 - [PATCH] Cleanup redundant if/else branch in src/translat…
Browse files Browse the repository at this point in the history
…or_kr.h
  • Loading branch information
Dimitri van Heesch committed Sep 9, 2014
1 parent 192aa65 commit 3d1343d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/translator_kr.h
Expand Up @@ -677,10 +677,10 @@ class TranslatorKorean : public Translator

if (i!=numEntries-1) // not the last entry, so we need a separator
{
if (i<numEntries-2) // not the fore last entry
result+=", ";
else // the fore last entry
//if (i<numEntries-2) // not the fore last entry
result+=", ";
//else // the fore last entry
// result+=", "; // TODO: does the 'and' need to be translated here?
}
}
return result;
Expand Down

0 comments on commit 3d1343d

Please sign in to comment.