diff options
author | Andras Timar <atimar@suse.com> | 2013-04-04 20:02:13 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-04-04 20:02:26 +0200 |
commit | 622509e47d778bd5e56f620266d5725daf02a90d (patch) | |
tree | 68a00ae2472c9bd50c41e307baf7d4049e320ea9 /tools/source/stream | |
parent | 68ebd3fb510056bbb46288cc42589ae98dd753ef (diff) |
remove useless comments
Change-Id: I90757f0d6ccdded30a49a3c54cd6bbc2f65dc755
Diffstat (limited to 'tools/source/stream')
-rw-r--r-- | tools/source/stream/strmunx.cxx | 3 | ||||
-rw-r--r-- | tools/source/stream/strmwnt.cxx | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/tools/source/stream/strmunx.cxx b/tools/source/stream/strmunx.cxx index 562cf80e546c..08ac00634e5c 100644 --- a/tools/source/stream/strmunx.cxx +++ b/tools/source/stream/strmunx.cxx @@ -502,9 +502,6 @@ void SvFileStream::Open( const String& rFilename, StreamMode nOpenMode ) eStreamMode = nOpenMode; eStreamMode &= ~STREAM_TRUNC; // don't truncat on reopen -// !!! NoOp: use ToAbs() -// !!! DirEntry aDirEntry( rFilename ); -// !!! aFilename = aDirEntry.GetFull(); aFilename = rFilename; rtl::OString aLocalFilename(rtl::OUStringToOString(aFilename, osl_getThreadTextEncoding())); diff --git a/tools/source/stream/strmwnt.cxx b/tools/source/stream/strmwnt.cxx index a0e05bbc28c5..847b7a916eda 100644 --- a/tools/source/stream/strmwnt.cxx +++ b/tools/source/stream/strmwnt.cxx @@ -279,9 +279,6 @@ void SvFileStream::Open( const String& rFilename, StreamMode nMode ) eStreamMode = nMode; eStreamMode &= ~STREAM_TRUNC; // don't truncate on reopen - // !!! NoOp: Use ToAbs() otherwise - // !!! DirEntry aDirEntry( rFilename ); - // !!! aFilename = aDirEntry.GetFull(); aFilename = aParsedFilename; rtl::OString aFileNameA(rtl::OUStringToOString(aFilename, osl_getThreadTextEncoding())); SetLastError( ERROR_SUCCESS ); // might be changed by Redirector |