Skip to content

Commit

Permalink
OPEN - task 2: Adjust to API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Apr 1, 2014
1 parent 26c72ca commit 0c22002
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
<parent>
<groupId>org.javamoney</groupId>
<artifactId>javamoney-parent</artifactId>
<version>0.5-SNAPSHOT</version>
<version>0.4</version>
</parent>

<artifactId>money-tck</artifactId>
<packaging>jar</packaging>

<version>0.9-SNAPSHOT</version>
<version>0.8</version>

<name>JSR 354 (TCK)</name>
<url>http://java.net/projects/javamoney</url>
<inceptionYear>2012</inceptionYear>
<description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency.
This module impelements JSR 354.</description>
This module implements JSR 354.</description>

<organization>
<name>JavaMoney</name>
Expand All @@ -40,7 +40,7 @@
</licenses>

<properties>
<jsr.version>0.9-SNAPSHOT</jsr.version>
<jsr.version>0.8</jsr.version>
<java.source.version>1.7</java.source.version>
<java.target.version>1.7</java.target.version>
<maven.compile.targetLevel>${jdkVersion}</maven.compile.targetLevel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public int getDefaultFractionDigits() {
return currency.getDefaultFractionDigits();
}

@Override

public int compareTo(CurrencyUnit o){
return 0;
}
Expand Down Expand Up @@ -311,7 +311,7 @@ public MonetaryAmount abs() {
return this;
}

@Override

public int compareTo(MonetaryAmount o){
return 0;
}
Expand Down

0 comments on commit 0c22002

Please sign in to comment.