Browse Source

trim the driver attribute

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@439807 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 19 years ago
parent
commit
33c2065ca8
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      WHATSNEW
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/JDBCTask.java

+ 1
- 0
WHATSNEW View File

@@ -23,6 +23,7 @@ Other changes:
* added classpath attribute and nested element to <script> to allow
the language jars to be specified in the build script.
Bugzilla report 29676.
* trim the driver attribute on the <sql> task. Bugzilla report 21228.

Changes from Ant 1.6.5 to Ant 1.7.0Beta1
========================================


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/JDBCTask.java View File

@@ -185,7 +185,7 @@ public abstract class JDBCTask extends Task {
* @param driver The driver to set
*/
public void setDriver(String driver) {
this.driver = driver;
this.driver = driver.trim();
}

/**


Loading…
Cancel
Save