summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/DumpDB.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/FreezeScript/DumpDB.cpp')
-rw-r--r--cpp/src/FreezeScript/DumpDB.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/src/FreezeScript/DumpDB.cpp b/cpp/src/FreezeScript/DumpDB.cpp
index f1eb24508c0..736f22e0d9d 100644
--- a/cpp/src/FreezeScript/DumpDB.cpp
+++ b/cpp/src/FreezeScript/DumpDB.cpp
@@ -452,10 +452,6 @@ run(const Ice::StringSeq& originalArgs, const Ice::CommunicatorPtr& communicator
if(!outputFile.empty())
{
- //
- // No nativeToUTF8 conversion necessary here, no string converter is installed
- // by wmain() on Windows and args are assumbed to be UTF8 on Unix platforms.
- //
IceUtilInternal::ofstream of(outputFile);
if(!of.good())
{
@@ -469,10 +465,6 @@ run(const Ice::StringSeq& originalArgs, const Ice::CommunicatorPtr& communicator
}
else
{
- //
- // No nativeToUTF8 conversion necessary here, no string converter is installed
- // by wmain() on Windows and args are assumbed to be UTF8 on Unix platforms.
- //
IceUtilInternal::ifstream in(inputFile);
char buff[1024];
while(true)