samples/differentreturntype/src-api1.0/api/API.java
changeset 152 eb6f29070331
parent 10 5611653dec2f
child 153 b5cbb797ec0a
     1.1 --- a/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:50:51 2008 +0200
     1.2 +++ b/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:58:05 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 +    }
     1.9  // END: theory.binary.differentreturntype.api
    1.10 -        return null;
    1.11 -    }
    1.12  }