prepare superclass extraction for final linked id creation fragment
This commit is contained in:
@@ -62,7 +62,7 @@ public abstract class LinkedCookieResource extends LinkedResource {
|
||||
}
|
||||
|
||||
public static String generate (Context context, byte[] fingerprint, int nonce) {
|
||||
return String.format("\"[Verifying my PGP key: openpgp4fpr:%s#%08x]\"",
|
||||
return String.format("[Verifying my PGP key: openpgp4fpr:%s#%08x]",
|
||||
KeyFormattingUtils.convertFingerprintToHex(fingerprint), nonce);
|
||||
}
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ public class RawLinkedIdentity {
|
||||
// return Hex.toHexString(data);
|
||||
|
||||
// debug for now
|
||||
return 1234567;
|
||||
return 0x8a9bad32;
|
||||
}
|
||||
|
||||
public @DrawableRes int getDisplayIcon() {
|
||||
|
||||
@@ -88,9 +88,9 @@ public class GenericHttpsResource extends LinkedCookieResource {
|
||||
}
|
||||
|
||||
public static GenericHttpsResource createNew (URI uri) {
|
||||
HashSet<String> flags = new HashSet<String>();
|
||||
HashSet<String> flags = new HashSet<>();
|
||||
flags.add("generic");
|
||||
HashMap<String,String> params = new HashMap<String,String>();
|
||||
HashMap<String,String> params = new HashMap<>();
|
||||
return create(flags, params, uri);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user