diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-09 20:53:09 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-09-09 20:53:09 (GMT) |
commit | 3d1343d1c8876d0eb0352eafafe4aa90bc483adf (patch) | |
tree | 50ff6602bc64dfc08d5fa53a0efae522eeba0604 /src | |
parent | 192aa6590b6ceb264335a5b8a1aed6b6f8b0f350 (diff) | |
download | Doxygen-3d1343d1c8876d0eb0352eafafe4aa90bc483adf.zip Doxygen-3d1343d1c8876d0eb0352eafafe4aa90bc483adf.tar.gz Doxygen-3d1343d1c8876d0eb0352eafafe4aa90bc483adf.tar.bz2 |
Bug 736031 - [PATCH] Cleanup redundant if/else branch in src/translator_kr.h
Diffstat (limited to 'src')
-rw-r--r-- | src/translator_kr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translator_kr.h b/src/translator_kr.h index c82d0b2..18337a5 100644 --- a/src/translator_kr.h +++ b/src/translator_kr.h @@ -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; |