notify-dpml AT lists.ibiblio.org
Subject: DPML Notify
List archive
svn commit: r1635 - development/main/magic/core/src/main/net/dpml/magic/model
- From: mcconnell AT netcompartner.com
- To: notify-dpml AT lists.ibiblio.org
- Subject: svn commit: r1635 - development/main/magic/core/src/main/net/dpml/magic/model
- Date: Sun, 30 Jan 2005 09:34:09 +0100
Author: mcconnell
Date: Sun Jan 30 09:34:09 2005
New Revision: 1635
Modified:
development/main/magic/core/src/main/net/dpml/magic/model/Resource.java
Log:
fix array reference
Modified:
development/main/magic/core/src/main/net/dpml/magic/model/Resource.java
==============================================================================
--- development/main/magic/core/src/main/net/dpml/magic/model/Resource.java
(original)
+++ development/main/magic/core/src/main/net/dpml/magic/model/Resource.java
Sun Jan 30 09:34:09 2005
@@ -263,10 +263,10 @@
String[] types = info.getTypes();
for( int j=0; j<types.length; j++ )
{
- String type = types[i];
+ String type = types[j];
if( !"theme".equals( type ) )
{
- final File file = resource.getArtifact(
project, types[j] );
+ final File file = resource.getArtifact(
project, type );
path.createPathElement().setLocation( file );
}
}
- svn commit: r1635 - development/main/magic/core/src/main/net/dpml/magic/model, mcconnell, 01/30/2005
Archive powered by MHonArc 2.6.24.