From c5a9d0d258e8f446a6295042ee0419b9a7b5dde1 Mon Sep 17 00:00:00 2001 From: Robert Coie Date: Sun, 26 May 2019 22:19:10 -0700 Subject: [PATCH] docs(developer): remove stale observation about methods being static (#3033) --- DEVELOPER.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 379754711..40f053b16 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -88,8 +88,6 @@ It's just a stub. The `return` is only there to keep the TypeScript type-checker By default, the `@Cordova` decorator wraps the plugin callbacks in a Promise that resolves when the success callback is called and rejects when the error callback is called. It also ensures that Cordova and the underlying plugin are available, and prints helpful diagnostics if they aren't. -You'll also notice that `getCurrentPosition` is a static method. That's because the plugin class is just a utility class to call the underlying Cordova plugin methods, it's not an instance and has no state. - Next, let's look at the `watchPosition` method. ```