Skip to content

Commit f2179a6

Browse files
committed
Added/improved Javadocs.
Added copyright headers to property files. Removed unused artifacts.
1 parent ba7169d commit f2179a6

34 files changed

+2027
-1954
lines changed

src/main/java/javax/money/AbstractContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.Set;
1616

1717
/**
18-
* This class models a context. Such a context allows to define extendible and
18+
* This class models an abstract context that allows to define extendible and
1919
* portable contexts with any kind of attributes in a type safe way.
2020
* <p>
2121
* Instances of this class should be immutable and thread-safe.

src/main/java/javax/money/CurrencySupplier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
public interface CurrencySupplier {
3333

3434
/**
35-
* Gets a result.
35+
* Gets the corresponding {@link javax.money.CurrencyUnit}.
3636
*
37-
* @return a result
37+
* @return the corresponding {@link javax.money.CurrencyUnit}, not null.
3838
*/
3939
CurrencyUnit getCurrency();
4040
}

0 commit comments

Comments
 (0)