From a81ef2149be4436cb29b8ee2a7c4b9660fdf4f9c Mon Sep 17 00:00:00 2001 From: Avi Parshan Date: Thu, 23 Apr 2020 15:25:01 +0300 Subject: [PATCH 1/2] updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14630da..21e2c34 100644 --- a/README.md +++ b/README.md @@ -521,7 +521,7 @@ callback { } @Override - public void dontAllow(@NonNull PiracyCheckerError error, @Nullable PirateApp app) { + public void doNotAllow(@NonNull PiracyCheckerError error, @Nullable PirateApp app) { // You can either do something specific when the user is not allowed to use the app // Or manage the error, using the 'error' parameter, yourself (Check errors at {@link PiracyCheckerError}). From bfcc2d614d0232182ae0e98acc4ccc69123c33ae Mon Sep 17 00:00:00 2001 From: Avi Parshan Date: Thu, 23 Apr 2020 15:37:57 +0300 Subject: [PATCH 2/2] fixed typo - overridden --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21e2c34..afe6032 100644 --- a/README.md +++ b/README.md @@ -533,7 +533,7 @@ callback { @Override public void onError(@NonNull PiracyCheckerError error) { - // This method is not required to be implemented/overriden but... + // This method is not required to be implemented/overridden but... // You can either do something specific when an error occurs while checking the license, // Or manage the error, using the 'error' parameter, yourself (Check errors at {@link PiracyCheckerError}). }