Commit 3d1343d1 authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Bug 736031 - [PATCH] Cleanup redundant if/else branch in src/translator_kr.h

parent 192aa659
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -677,10 +677,10 @@ class TranslatorKorean : public Translator


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