summaryrefslogtreecommitdiffstats
path: root/src/translator_kr.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-09-09 20:53:09 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-09-09 20:53:09 (GMT)
commit3d1343d1c8876d0eb0352eafafe4aa90bc483adf (patch)
tree50ff6602bc64dfc08d5fa53a0efae522eeba0604 /src/translator_kr.h
parent192aa6590b6ceb264335a5b8a1aed6b6f8b0f350 (diff)
downloadDoxygen-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/translator_kr.h')
-rw-r--r--src/translator_kr.h6
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;