Browse Source

Use context to resolve file rahter than proijectr

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270567 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
15debed637
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/SQLExec.java
  2. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/SQLExec.java

+ 1
- 1
proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/SQLExec.java View File

@@ -737,7 +737,7 @@ public class SQLExec
while( ( line = in.readLine() ) != null )
{
line = line.trim();
line = getProject().replaceProperties( line );
line = "" + resolveValue( line );
if( line.startsWith( "//" ) )
continue;
if( line.startsWith( "--" ) )


+ 1
- 1
proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/SQLExec.java View File

@@ -737,7 +737,7 @@ public class SQLExec
while( ( line = in.readLine() ) != null )
{
line = line.trim();
line = getProject().replaceProperties( line );
line = "" + resolveValue( line );
if( line.startsWith( "//" ) )
continue;
if( line.startsWith( "--" ) )


Loading…
Cancel
Save