Rename isServiceAvailable to isAvailable
This commit is contained in:
parent
b903683486
commit
c54a18a5a2
@ -44,8 +44,8 @@ public class Printer extends CordovaPlugin {
|
|||||||
@Override
|
@Override
|
||||||
public boolean execute (String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
|
public boolean execute (String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
|
||||||
// Es soll überprüft werden, ob ein Dienst zum Ausdrucken von Inhalten zur Verfügung steht
|
// Es soll überprüft werden, ob ein Dienst zum Ausdrucken von Inhalten zur Verfügung steht
|
||||||
if (action.equalsIgnoreCase("isServiceAvailable")) {
|
if (action.equalsIgnoreCase("isAvailable")) {
|
||||||
isServiceAvailable(callbackContext);
|
isAvailable(callbackContext);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -64,7 +64,7 @@ public class Printer extends CordovaPlugin {
|
|||||||
/**
|
/**
|
||||||
* Überprüft, ob ein Drucker zur Verfügung steht.
|
* Überprüft, ob ein Drucker zur Verfügung steht.
|
||||||
*/
|
*/
|
||||||
private void isServiceAvailable (CallbackContext ctx) {
|
private void isAvailable (CallbackContext ctx) {
|
||||||
Boolean supported = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
|
Boolean supported = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
|
||||||
PluginResult result = new PluginResult(PluginResult.Status.OK, supported);
|
PluginResult result = new PluginResult(PluginResult.Status.OK, supported);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user