Suppress Warnings.

This commit is contained in:
zhouhui 2024-03-14 16:52:04 +08:00
parent 10608d39c4
commit 7793f8ddae
1 changed files with 3 additions and 1 deletions

View File

@ -112,7 +112,9 @@ public final class Constants {
if (Float.parseFloat(s[1]) >= version) {
return true;
}
} catch (NumberFormatException e) {
} catch (
@SuppressWarnings("unused")
NumberFormatException e) {
// False for Windows XP, etc.
return false;
}