mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-22 08:36:25 +08:00
formatting - sigh
This commit is contained in:
parent
517b5e0db9
commit
c15971253f
@ -620,16 +620,16 @@ public class DroidGap extends PhonegapActivity {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
/**
|
/**
|
||||||
* Called when the activity receives a new intent
|
* Called when the activity receives a new intent
|
||||||
**/
|
**/
|
||||||
protected void onNewIntent(Intent intent) {
|
protected void onNewIntent(Intent intent) {
|
||||||
super.onNewIntent(intent);
|
super.onNewIntent(intent);
|
||||||
|
|
||||||
//Forward to plugins
|
//Forward to plugins
|
||||||
this.pluginManager.onNewIntent(intent);
|
this.pluginManager.onNewIntent(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
/**
|
/**
|
||||||
|
@ -77,8 +77,8 @@ public abstract class Plugin implements IPlugin {
|
|||||||
/**
|
/**
|
||||||
* Called when the activity receives a new intent.
|
* Called when the activity receives a new intent.
|
||||||
*/
|
*/
|
||||||
public void onNewIntent(Intent intent) {
|
public void onNewIntent(Intent intent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The final call you receive before your activity is destroyed.
|
* The final call you receive before your activity is destroyed.
|
||||||
|
@ -267,6 +267,9 @@ public final class PluginManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the activity receives a new intent.
|
||||||
|
*/
|
||||||
public void onNewIntent(Intent intent) {
|
public void onNewIntent(Intent intent) {
|
||||||
java.util.Set<Entry<String,Plugin>> s = this.plugins.entrySet();
|
java.util.Set<Entry<String,Plugin>> s = this.plugins.entrySet();
|
||||||
java.util.Iterator<Entry<String,Plugin>> it = s.iterator();
|
java.util.Iterator<Entry<String,Plugin>> it = s.iterator();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user