You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/03/15 22:57:24 UTC

svn commit: r1301224 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java

Author: tn
Date: Thu Mar 15 21:57:24 2012
New Revision: 1301224

URL: http://svn.apache.org/viewvc?rev=1301224&view=rev
Log:
Removed unnecessary new line in graph ml exporter.

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java?rev=1301224&r1=1301223&r2=1301224&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/export/GraphMLExporter.java Thu Mar 15 21:57:24 2012
@@ -137,7 +137,7 @@ final class GraphMLExporter<V extends Ve
         // start document tokens
         xmlWriter.writeStartDocument();
 
-        xmlWriter.writeComment( format( "Graph generated by Apache Commons Graph on %s%n", new Date() ) );
+        xmlWriter.writeComment( format( "Graph generated by Apache Commons Graph on %s", new Date() ) );
 
         xmlWriter.writeStartElement( GRAPHML );
         xmlWriter.writeAttribute( XMLNS, GRAPHML_XMLNS );