aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java')
-rw-r--r--app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java b/app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java
deleted file mode 100644
index 63e7ae3..0000000
--- a/app/src/main/java/moe/yuuta/gplicense/NullDeviceLimiter.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package moe.yuuta.gplicense;
-
-/**
- * A DeviceLimiter that doesn't limit the number of devices that can use a
- * given user's license.
- * <p>
- * Unless you have reason to believe that your application is being pirated
- * by multiple users using the same license (signing in to Market as the same
- * user), we recommend you use this implementation.
- */
-public class NullDeviceLimiter implements DeviceLimiter {
-
- public int isDeviceAllowed(String userId) {
- return Policy.LICENSED;
- }
-} \ No newline at end of file