mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-09-23 12:35:55 -04:00
Fix default locale lint warning
This commit is contained in:
1 parent
e6d784368f
commit
b42de49cb4
1 file changed
+1
-1
@@ -220,7 +220,7 @@ public final class Utils {
|
||||
return androidVersionNames[0];
|
||||
}
|
||||
if (sdkLevel >= androidVersionNames.length) {
|
||||
return String.format("v%d", sdkLevel);
|
||||
return String.format(Locale.ENGLISH, "v%d", sdkLevel);
|
||||
}
|
||||
return androidVersionNames[sdkLevel];
|
||||
}
|
||||
|
||||
Reference in new issue
Block a user