Merge remote-tracking branch 'origin/development' into v/crypto-input-parcel
Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java
This commit is contained in:
@@ -124,7 +124,7 @@ public class CertifyResult extends InputPendingResult {
|
||||
mCertifyError, mCertifyError);
|
||||
}
|
||||
|
||||
return Notify.createNotify(activity, str, duration, style, new ActionListener() {
|
||||
return Notify.create(activity, str, duration, style, new ActionListener() {
|
||||
@Override
|
||||
public void onAction() {
|
||||
Intent intent = new Intent(
|
||||
|
||||
@@ -116,7 +116,7 @@ public class DeleteResult extends OperationResult {
|
||||
}
|
||||
}
|
||||
|
||||
return Notify.createNotify(activity, str, duration, style, new ActionListener() {
|
||||
return Notify.create(activity, str, duration, style, new ActionListener() {
|
||||
@Override
|
||||
public void onAction() {
|
||||
Intent intent = new Intent(
|
||||
|
||||
@@ -179,7 +179,7 @@ public class ImportKeyResult extends OperationResult {
|
||||
}
|
||||
}
|
||||
|
||||
return Notify.createNotify(activity, str, duration, style, new ActionListener() {
|
||||
return Notify.create(activity, str, duration, style, new ActionListener() {
|
||||
@Override
|
||||
public void onAction() {
|
||||
Intent intent = new Intent(
|
||||
|
||||
@@ -281,10 +281,10 @@ public abstract class OperationResult implements Parcelable {
|
||||
}
|
||||
|
||||
if (getLog() == null || getLog().isEmpty()) {
|
||||
return Notify.createNotify(activity, logText, Notify.LENGTH_LONG, style);
|
||||
return Notify.create(activity, logText, Notify.LENGTH_LONG, style);
|
||||
}
|
||||
|
||||
return Notify.createNotify(activity, logText, Notify.LENGTH_LONG, style,
|
||||
return Notify.create(activity, logText, Notify.LENGTH_LONG, style,
|
||||
new ActionListener() {
|
||||
@Override
|
||||
public void onAction() {
|
||||
|
||||
Reference in New Issue
Block a user