Skip to content

Commit

Permalink
Skipping encryption checking when noCrypt is set.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Apr 19, 2014
1 parent cebb4ad commit 29a1df5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -196,7 +196,7 @@ public <F extends ObjectType> HookOperationMode click(LensContext<F> context, Ta
throw new IllegalStateException(e.getMessage()+" in clockwork, state="+state, e);
}
}
if (InternalsConfig.encryptionChecks) {
if (InternalsConfig.encryptionChecks && !ModelExecuteOptions.isNoCrypt(context.getOptions())) {
context.checkEncrypted();
}

Expand Down

0 comments on commit 29a1df5

Please sign in to comment.