change main class to extend Application.Adapter instead of implements Application

git-svn-id: https://svn.apache.org/repos/asf/pivot/skunk/pivot-archetype-quickstart@1341506 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/resources/archetype-resources/src/main/java/PivotApplication.java b/src/main/resources/archetype-resources/src/main/java/PivotApplication.java
index 9212528..30797d5 100644
--- a/src/main/resources/archetype-resources/src/main/java/PivotApplication.java
+++ b/src/main/resources/archetype-resources/src/main/java/PivotApplication.java
@@ -29,7 +29,7 @@
  *

  * Remember to run mvn compile before running mvn exec:java

  */

-public class PivotApplication implements Application {

+public class PivotApplication extends Application.Adapter {

 

     PivotApplicationWindow window = null;

 

@@ -76,20 +76,4 @@
         return false;

     }

 

-    /**

-     * Called to notify the application that it is being suspended.

-     */

-    @Override

-    public void suspend() throws Exception {

-        // empty method

-    }

-

-    /**

-     * Called when a suspended application has been resumed.

-     */

-    @Override

-    public void resume() throws Exception {

-        // empty method

-    }

-

 }