Browse Source

Migrate Condition class to framework

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269236 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
aefe3a83c9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/Condition.java

proposal/myrmidon/src/java/org/apache/myrmidon/components/model/Condition.java → proposal/myrmidon/src/java/org/apache/myrmidon/framework/Condition.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in * version 1.1, a copy of which has been included with this distribution in
* the LICENSE file. * the LICENSE file.
*/ */
package org.apache.myrmidon.components.model;
package org.apache.myrmidon.framework;


import org.apache.avalon.excalibur.property.PropertyException; import org.apache.avalon.excalibur.property.PropertyException;
import org.apache.avalon.excalibur.property.PropertyUtil; import org.apache.avalon.excalibur.property.PropertyUtil;
@@ -23,7 +23,7 @@ public class Condition
implements Component implements Component
{ {
private String m_condition; private String m_condition;
private boolean m_isIfCondition;
private boolean m_isIfCondition;


public Condition( final boolean isIfCondition, final String condition ) public Condition( final boolean isIfCondition, final String condition )
{ {

Loading…
Cancel
Save