Revision: 17581
          http://sourceforge.net/p/gate/code/17581
Author:   markagreenwood
Date:     2014-03-07 19:39:04 +0000 (Fri, 07 Mar 2014)
Log Message:
-----------
removed the redundant cast that made the build unstable

Modified Paths:
--------------
    gate/trunk/src/main/gate/creole/AbstractResource.java

Modified: gate/trunk/src/main/gate/creole/AbstractResource.java
===================================================================
--- gate/trunk/src/main/gate/creole/AbstractResource.java       2014-03-07 
18:58:06 UTC (rev 17580)
+++ gate/trunk/src/main/gate/creole/AbstractResource.java       2014-03-07 
19:39:04 UTC (rev 17581)
@@ -376,7 +376,7 @@
                 throws ResourceInstantiationException{
     Iterator<List<Parameter>> disIter = parameters.iterator();
     while(disIter.hasNext()){
-      List<Parameter> disjunction = (List<Parameter>)disIter.next();
+      List<Parameter> disjunction = disIter.next();
       boolean required = !disjunction.get(0).isOptional();
       if(required){
         //at least one parameter in the disjunction must have a value

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


------------------------------------------------------------------------------
Subversion Kills Productivity. Get off Subversion & Make the Move to Perforce.
With Perforce, you get hassle-free workflows. Merge that actually works. 
Faster operations. Version large binaries.  Built-in WAN optimization and the
freedom to use Git, Perforce or both. Make the move to Perforce.
http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to