Changeset 16623 in josm
- Timestamp:
- 2020-06-14T14:55:16+02:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r16622 r16623 302 302 <!-- Undocumented argument to ignore "Sun internal proprietary API" warning, see http://stackoverflow.com/a/13862308/2257172 --> 303 303 <compilerarg value="-XDignore.symbol.file"/> 304 <compilerarg value="-Xplugin:ErrorProne -XepExcludedPaths:.*/parsergen/.* -Xep:ReferenceEquality:OFF -Xep:ImmutableEnumChecker:OFF -Xep:FutureReturnValueIgnored:OFF -Xep:FloatingPointLiteralPrecision:OFF -Xep:ShortCircuitBoolean:OFF -Xep:StringSplitter:OFF -Xep:JdkObsolete:OFF -Xep:UnnecessaryParentheses:OFF -Xep:EqualsGetClass:OFF -Xep:ThreadPriorityCheck:OFF -Xep:UndefinedEquals:OFF -Xep:MixedMutabilityReturnType:OFF -Xep:JavaTimeDefaultTimeZone:OFF -Xep:UnusedVariable:OFF -Xep:BadImport:OFF -Xep:AnnotateFormatMethod:OFF -Xep:MutablePublicArray:OFF -Xep:StaticAssignmentInConstructor:OFF"/>304 <compilerarg value="-Xplugin:ErrorProne -XepExcludedPaths:.*/parsergen/.* -Xep:ReferenceEquality:OFF -Xep:ImmutableEnumChecker:OFF -Xep:FutureReturnValueIgnored:OFF -Xep:FloatingPointLiteralPrecision:OFF -Xep:ShortCircuitBoolean:OFF -Xep:StringSplitter:OFF -Xep:JdkObsolete:OFF -Xep:UnnecessaryParentheses:OFF -Xep:EqualsGetClass:OFF -Xep:ThreadPriorityCheck:OFF -Xep:UndefinedEquals:OFF -Xep:MixedMutabilityReturnType:OFF -Xep:JavaTimeDefaultTimeZone:OFF -Xep:UnusedVariable:OFF -Xep:BadImport:OFF -Xep:AnnotateFormatMethod:OFF -Xep:MutablePublicArray:OFF"/> 305 305 <compilerarg line="-Xmaxwarns 1000"/> 306 306 <classpath> -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r16498 r16623 330 330 * @since 10340 331 331 */ 332 @SuppressWarnings("StaticAssignmentInConstructor") 332 333 public MainApplication(MainFrame mainFrame) { 333 334 MainApplication.mainFrame = mainFrame; -
trunk/src/org/openstreetmap/josm/gui/bbox/SlippyMapBBoxChooser.java
r15963 r16623 82 82 private transient ICoordinate iSelectionRectEnd; 83 83 84 static { 85 debug = Logging.isDebugEnabled(); 86 } 87 84 88 /** 85 89 * Constructs a new {@code SlippyMapBBoxChooser}. 86 90 */ 87 91 public SlippyMapBBoxChooser() { 88 debug = Logging.isDebugEnabled();89 92 SpringLayout springLayout = new SpringLayout(); 90 93 setLayout(springLayout); -
trunk/src/org/openstreetmap/josm/io/audio/AudioPlayer.java
r15181 r16623 268 268 } 269 269 270 @SuppressWarnings("unchecked") 270 @SuppressWarnings({"unchecked", "StaticAssignmentInConstructor"}) 271 271 private AudioPlayer() { 272 272 state = State.INITIALIZING;
Note:
See TracChangeset
for help on using the changeset viewer.