task4/solution04/src/org/apidesign/apifest08/currency/CompositeConvertorImpl.java
changeset 69 420baec87dc5
parent 61 58ec6da75f6f
     1.1 --- a/task4/solution04/src/org/apidesign/apifest08/currency/CompositeConvertorImpl.java	Sat Oct 11 23:38:46 2008 +0200
     1.2 +++ b/task4/solution04/src/org/apidesign/apifest08/currency/CompositeConvertorImpl.java	Fri Oct 17 17:40:14 2008 +0200
     1.3 @@ -16,7 +16,7 @@
     1.4   * A composite convertor will build all possible conversions that are allowed by the underlying set of convertors.
     1.5   *
     1.6   * @author D'Arcy Smith
     1.7 - * @verson 1.1
     1.8 + * @verson 1.2
     1.9   */
    1.10  final class CompositeConvertorImpl
    1.11      implements Convertor
    1.12 @@ -88,7 +88,9 @@
    1.13          //   we cannot derive:
    1.14          //      USD <-> GBP
    1.15          //      CAD <-> GBP
    1.16 -        //      CZK <-> GBP
    1.17 +        //      CZK <-> GBP        
    1.18 +        // 
    1.19 +        // NOTE: no attempt is made to deal with dates for DatedConvertors... nothing we can do about it.
    1.20          do
    1.21          {
    1.22              newConvertors = 0;