diff -r 0fd5e9c500b9 -r 131332825eab samples/differentreturntype/src-api1.0/api/API.java --- a/samples/differentreturntype/src-api1.0/api/API.java Sat Jun 14 09:58:11 2008 +0200 +++ b/samples/differentreturntype/src-api1.0/api/API.java Sat Jun 14 09:59:25 2008 +0200 @@ -5,7 +5,7 @@ public abstract class API { // BEGIN: theory.binary.differentreturntype.api public static Icon getIcon() { - return null; // compute something +// END: theory.binary.differentreturntype.api + return null; } -// END: theory.binary.differentreturntype.api }