VERY basic test for save keyring

This commit is contained in:
Art O Cathain
2014-06-21 10:47:07 +01:00
parent a1525bffe2
commit 0af2b27cb3
9 changed files with 148 additions and 67 deletions

View File

@@ -0,0 +1,19 @@
package org.sufficientlysecure.keychain.pgp;
/**
* No-op implementation of Progressable
*/
public class NullProgressable implements Progressable {
@Override
public void setProgress(String message, int current, int total) {
}
@Override
public void setProgress(int resourceId, int current, int total) {
}
@Override
public void setProgress(int current, int total) {
}
}