Skip to content

Commit

Permalink
Make isFeatureAllowed always return true.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed Dec 16, 2014
1 parent 4f2643d commit 6ced83b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/water/license/LicenseManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public boolean isFeatureAllowed(String featureName) {
return isFeatureAllowed(featureName, silent);
}

public boolean isFeatureAllowed(String featureName, boolean silent) {
return true;
}

/*
public boolean isFeatureAllowed(String featureName, boolean silent) {
if (_license == null) {
if (! silent) {
Expand Down Expand Up @@ -113,4 +118,5 @@ public boolean isFeatureAllowed(String featureName, boolean silent) {
return false;
}
*/
}

0 comments on commit 6ced83b

Please sign in to comment.