88import java .util .Map ;
99import java .util .Set ;
1010
11- import javax .annotation .Nullable ;
12-
1311import org .apache .maven .artifact .Artifact ;
1412import org .apache .maven .artifact .DependencyResolutionRequiredException ;
1513import org .apache .maven .artifact .resolver .filter .ScopeArtifactFilter ;
2725import org .codehaus .plexus .compiler .util .scan .StaleSourceScanner ;
2826import org .codehaus .plexus .compiler .util .scan .mapping .SourceMapping ;
2927import org .codehaus .plexus .util .StringUtils ;
28+ import org .jspecify .annotations .Nullable ;
3029
3130/**
3231 * Invokes the GWT Compiler on the project's sources and resources.
@@ -320,21 +319,18 @@ private String getModuleShortName() {
320319 return moduleShortName ;
321320 }
322321
323- @ Nullable
324322 @ Override
325- public String getLogLevel () {
323+ public @ Nullable String getLogLevel () {
326324 return logLevel ;
327325 }
328326
329- @ Nullable
330327 @ Override
331- public String getStyle () {
328+ public @ Nullable String getStyle () {
332329 return style ;
333330 }
334331
335- @ Nullable
336332 @ Override
337- public Integer getOptimize () {
333+ public @ Nullable Integer getOptimize () {
338334 return optimize ;
339335 }
340336
@@ -353,9 +349,8 @@ public File getDeployDir() {
353349 return deploy ;
354350 }
355351
356- @ Nullable
357352 @ Override
358- public File getExtraDir () {
353+ public @ Nullable File getExtraDir () {
359354 return extra ;
360355 }
361356
@@ -364,15 +359,13 @@ public boolean isDraftCompile() {
364359 return draftCompile ;
365360 }
366361
367- @ Nullable
368362 @ Override
369- public String getLocalWorkers () {
363+ public @ Nullable String getLocalWorkers () {
370364 return localWorkers ;
371365 }
372366
373- @ Nullable
374367 @ Override
375- public String getSourceLevel () {
368+ public @ Nullable String getSourceLevel () {
376369 return sourceLevel ;
377370 }
378371}
0 commit comments