summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/transformdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/FreezeScript/transformdb.cpp')
-rw-r--r--cpp/src/FreezeScript/transformdb.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/cpp/src/FreezeScript/transformdb.cpp b/cpp/src/FreezeScript/transformdb.cpp
index 065fb73e307..7021e125e91 100644
--- a/cpp/src/FreezeScript/transformdb.cpp
+++ b/cpp/src/FreezeScript/transformdb.cpp
@@ -724,10 +724,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())
{
@@ -744,9 +740,6 @@ run(const Ice::StringSeq& originalArgs, const Ice::CommunicatorPtr& communicator
//
// Read the input file.
//
- // 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)