Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Schürmann committed Mar 10, 2015
1 parent 4b6bc5a commit 71af808
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/openintents/openpgp/util/OpenPgpApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ public class OpenPgpApi {

public static final String RESULT_TYPE = "type";
public static final int RESULT_TYPE_UNENCRYPTED_UNSIGNED = 0;
public static final int RESULT_TYPE_ENCRYPTED = 8;
public static final int RESULT_TYPE_SIGNED = 16;
public static final int RESULT_TYPE_ENCRYPTED = 1;
public static final int RESULT_TYPE_SIGNED = 2;

IOpenPgpService mService;
Context mContext;
Expand Down

0 comments on commit 71af808

Please sign in to comment.