IcedTea6 build failed for 7b223f11f412

Mark Wielaard mark at klomp.org
Thu Jun 18 02:00:17 PDT 2009


Hi Andrew,

On Thu, 2009-06-18 at 00:15 +0100, Andrew John Hughes wrote:
> ecj does not support @Override annotations on interface methods.  Remove them.

Thanks. Done as follows:

Don't use @Override for methods implementing interfaces.

2009-06-18  Mark Wielaard  <mark at klomp.org>

        * rt/net/sourceforge/jnlp/services/XExtendedService.java
        (openFile): Remove @Override of interface method.
        (openFiles): Likewise.


diff -r afde409ac13e rt/net/sourceforge/jnlp/services/XExtendedService.java
--- a/rt/net/sourceforge/jnlp/services/XExtendedService.java	Wed Jun 17 17:10:39 2009 -0400
+++ b/rt/net/sourceforge/jnlp/services/XExtendedService.java	Thu Jun 18 10:54:48 2009 +0200
@@ -32,7 +32,6 @@
  */
 public class XExtendedService implements ExtendedService {
 
-    @Override
     public FileContents openFile(File file) throws IOException {
 
         if (ServiceUtil.checkAccess(SecurityWarningDialog.AccessType.READ_FILE)) {
@@ -44,7 +43,6 @@
 
     }
 
-    @Override
     public FileContents[] openFiles(File[] files) throws IOException {
         FileContents[] contents = new FileContents[files.length];
         for (int i = 0; i < files.length; i++) {





More information about the distro-pkg-dev mailing list