Skip to content

Commit 93cbd49

Browse files
author
Manny Jimenez
committed
Cleaning code
1 parent ad7f63a commit 93cbd49

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

firebase-app-distribution/src/main/java/com/google/firebase/appdistribution/FirebaseAppDistributionTesterApiClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,7 @@ private String getFingerprintHashForPackage(Context context) {
219219
if (hash == null) {
220220
return null;
221221
} else {
222-
String shaHash = Hex.bytesToStringUppercase(hash, /* zeroTerminated= */ false);
223-
return shaHash;
222+
return Hex.bytesToStringUppercase(hash, /* zeroTerminated= */ false);
224223
}
225224
} catch (PackageManager.NameNotFoundException e) {
226225
LogWrapper.getInstance().e(TAG + "No such package: " + context.getPackageName(), e);

0 commit comments

Comments
 (0)