samples/differentreturntype/src-api1.0/api/API.java
changeset 181 81d72f69fa42
parent 180 131332825eab
     1.1 --- a/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:59:25 2008 +0200
     1.2 +++ b/samples/differentreturntype/src-api1.0/api/API.java	Sat Jun 14 09:59:27 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  }