You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by hb...@apache.org on 2008/10/26 23:02:43 UTC

svn commit: r708050 - /maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java

Author: hboutemy
Date: Sun Oct 26 15:02:42 2008
New Revision: 708050

URL: http://svn.apache.org/viewvc?rev=708050&view=rev
Log:
added a comment about encoding and codePage attribute

Modified:
    maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java

Modified: maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java?rev=708050&r1=708049&r2=708050&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java (original)
+++ maven/doxia/doxia/trunk/doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/RtfSink.java Sun Oct 26 15:02:42 2008
@@ -243,6 +243,7 @@
 
         Writer w;
         stream = new BufferedOutputStream( output );
+        // TODO: encoding should be consistent with codePage
         if ( encoding != null )
         {
             w = new OutputStreamWriter( stream, encoding );