Skip to content

Commit

Permalink
Created v1.5.1 tag
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pivot/tags/v1.5.1@985953 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Todd Volkert committed Aug 16, 2010
2 parents babc2f8 + 363905d commit 26ea564
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILD
Expand Up @@ -12,7 +12,7 @@ Project Set-Up
* Ensure that JUnit is on your Ant classpath (set the CLASSPATH environment
variable accordingly):

http://ant.apache.org/manual/OptionalTasks/junit.html
http://ant.apache.org/manual/Tasks/junit.html

* Ensure that the LiveConnect APIs are on your classpath (set the CLASSPATH
environment variable accordingly):
Expand Down
Expand Up @@ -52,7 +52,7 @@ public String getType() {
}

public void setType(String type) {
this.type = type;
this.type = type.trim();
}

public Double getAmount() {
Expand All @@ -72,6 +72,6 @@ public String getDescription() {
}

public void setDescription(String description) {
this.description = description;
this.description = description.trim();
}
}

0 comments on commit 26ea564

Please sign in to comment.