Revision: 17646
          http://sourceforge.net/p/gate/code/17646
Author:   markagreenwood
Date:     2014-03-13 08:55:22 +0000 (Thu, 13 Mar 2014)
Log Message:
-----------
removed an unnecessary cast

Modified Paths:
--------------
    
gate/trunk/plugins/Format_FastInfoset/src/gate/corpora/FastInfosetExporter.java

Modified: 
gate/trunk/plugins/Format_FastInfoset/src/gate/corpora/FastInfosetExporter.java
===================================================================
--- 
gate/trunk/plugins/Format_FastInfoset/src/gate/corpora/FastInfosetExporter.java 
    2014-03-13 02:22:09 UTC (rev 17645)
+++ 
gate/trunk/plugins/Format_FastInfoset/src/gate/corpora/FastInfosetExporter.java 
    2014-03-13 08:55:22 UTC (rev 17646)
@@ -200,7 +200,7 @@
                 while(docIter.hasNext()) {
                   boolean docWasLoaded =
                       corpus.isDocumentLoaded(currentDocIndex);
-                  Document currentDoc = (Document)docIter.next();
+                  Document currentDoc = docIter.next();
                   URL sourceURL = currentDoc.getSourceUrl();
                   String fileName = null;
                   if(sourceURL != null) {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to