samples/differentreturntype/src-api1.0/api/API.java
changeset 153 b5cbb797ec0a
parent 152 eb6f29070331
child 154 0fd5e9c500b9
     1.1 --- a/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:58:05 2008 +0200
     1.2 +++ b/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:58:08 2008 +0200
     1.3 @@ -5,7 +5,7 @@
     1.4  public abstract class API {
     1.5  // BEGIN: theory.binary.differentreturntype.api
     1.6      public static Icon getIcon() {
     1.7 -        return null; // compute something
     1.8 +// END: theory.binary.differentreturntype.api
     1.9 +        return null;
    1.10      }
    1.11 -// END: theory.binary.differentreturntype.api
    1.12  }