Undeprecate some just-deprecated symbols in PluginManager.

Forgot about custom engines again :(


Project: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/5a610097
Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/5a610097
Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/5a610097

Branch: refs/heads/master
Commit: 5a6100979f56ac68274471a88531599c583c4b0f
Parents: 9d0cc2e
Author: Andrew Grieve <[email protected]>
Authored: Mon Jul 14 14:28:27 2014 -0400
Committer: Archana Naik <[email protected]>
Committed: Wed Jul 30 18:10:32 2014 -0700

----------------------------------------------------------------------
 framework/src/org/apache/cordova/PluginManager.java | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/5a610097/framework/src/org/apache/cordova/PluginManager.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/PluginManager.java 
b/framework/src/org/apache/cordova/PluginManager.java
index 400426c..97988d8 100755
--- a/framework/src/org/apache/cordova/PluginManager.java
+++ b/framework/src/org/apache/cordova/PluginManager.java
@@ -86,7 +86,6 @@ public class PluginManager {
     /**
      * Init when loading a new HTML page into webview.
      */
-    @Deprecated // Should not be exposed as public.
     public void init() {
         LOG.d(TAG, "init()");
         this.onPause(false);
@@ -277,7 +276,6 @@ public class PluginManager {
      *
      * @param multitasking      Flag indicating if multitasking is turned on 
for app
      */
-    @Deprecated // Should not be public
     public void onPause(boolean multitasking) {
         for (CordovaPlugin plugin : this.pluginMap.values()) {
             plugin.onPause(multitasking);
@@ -289,7 +287,6 @@ public class PluginManager {
      *
      * @param multitasking      Flag indicating if multitasking is turned on 
for app
      */
-    @Deprecated // Should not be public
     public void onResume(boolean multitasking) {
         for (CordovaPlugin plugin : this.pluginMap.values()) {
             plugin.onResume(multitasking);
@@ -299,7 +296,6 @@ public class PluginManager {
     /**
      * The final call you receive before your activity is destroyed.
      */
-    @Deprecated // Should not be public
     public void onDestroy() {
         for (CordovaPlugin plugin : this.pluginMap.values()) {
             plugin.onDestroy();
@@ -330,7 +326,6 @@ public class PluginManager {
     /**
      * Called when the activity receives a new intent.
      */
-    @Deprecated // Should not be public
     public void onNewIntent(Intent intent) {
         for (CordovaPlugin plugin : this.pluginMap.values()) {
             plugin.onNewIntent(intent);
@@ -343,7 +338,6 @@ public class PluginManager {
      * @param url               The URL that is being changed to.
      * @return                  Return false to allow the URL to load, return 
true to prevent the URL from loading.
      */
-    @Deprecated // Should not be public
     public boolean onOverrideUrlLoading(String url) {
         // Deprecated way to intercept URLs. (process <url-filter> tags).
         // Instead, plugins should not include <url-filter> and instead ensure
@@ -370,7 +364,6 @@ public class PluginManager {
     /**
      * Called when the app navigates or refreshes.
      */
-    @Deprecated // Should not be public
     public void onReset() {
         for (CordovaPlugin plugin : this.pluginMap.values()) {
             plugin.onReset();

Reply via email to