-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump spotless 2.44.2 and format code #2661
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
} | ||
} | ||
static boolean getBooleanFromSystemPropsOrDefault(String propertyName, | ||
boolean defaultValue) {var property=System.getProperty(propertyName);if(property==null){return defaultValue;}else{property=property.trim().toLowerCase();return switch(property){case"true"->true;case"false"->false;default->defaultValue;};}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, that doesn't seem right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow, interesting, not sure, will take a look a look later, this might be a bug in spotless
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
even 2.44.2 is not fixing it we might want just ignore this for now, and create an issue for spotless?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, there seems something wrong with 2.44
Signed-off-by: Attila Mészáros a_meszaros@apple.com