Skip to content

Commit

Permalink
Fix swapped docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
fynngodau committed Jan 11, 2024
1 parent 30feaa2 commit 9fbaf2e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ public abstract class LicenseChecker<D, R> {
*/
static final int LICENSED = 0x0;
/**
* The application is licensed to the user, but there is an updated application version available that is
* signed with a different key.
* The application is not licensed to the user.
*/
static final int NOT_LICENSED = 0x1;
/**
* The application is not licensed to the user.
* The application is licensed to the user, but there is an updated application version available that is
* signed with a different key.
*/
static final int LICENSED_OLD_KEY = 0x2;
/**
Expand Down

0 comments on commit 9fbaf2e

Please sign in to comment.