Skip to content
Snippets Groups Projects
Commit 050f9da1 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

Merge branch 'increment-lib' into 'main'

Increment lib

See merge request !144
parents 81c9b3c7 a2fe503f
No related branches found
No related tags found
2 merge requests!146Production Release | nshmp-ws,!144Increment lib
Pipeline #134978 passed
...@@ -8,7 +8,7 @@ micronautPluginVersion = 3.1.1 ...@@ -8,7 +8,7 @@ micronautPluginVersion = 3.1.1
nodePluginVersion = 3.0.1 nodePluginVersion = 3.0.1
nodeVersion = 16.3.0 nodeVersion = 16.3.0
nshmFaultSectionsTag = v0.1 nshmFaultSectionsTag = v0.1
nshmpLibVersion = 1.0.2 nshmpLibVersion = 1.0.4
nshmpWsUtilsVersion = 0.3.5 nshmpWsUtilsVersion = 0.3.5
shadowVersion = 7.1.2 shadowVersion = 7.1.2
spotbugsVersion = 4.7.0 spotbugsVersion = 4.7.0
......
...@@ -24,6 +24,16 @@ ...@@ -24,6 +24,16 @@
name="gov.usgs.earthquake.nshmp.www.fault.$NshmFaultSection$Introspection" /> name="gov.usgs.earthquake.nshmp.www.fault.$NshmFaultSection$Introspection" />
</Match> </Match>
<!-- MultimapBuilders are causing null dereferences but it's not clear where
to place a checkNotNull in the inlined builder method chain. -->
<Match>
<Class
name="gov.usgs.earthquake.nshmp.www.fault.FaultSections$FaultFinder" />
<Method name="&lt;init&gt;" />
<Bug code="NP" />
</Match>
<!-- https://spotbugs.readthedocs.io/en/stable/filter.html#rank --> <!-- https://spotbugs.readthedocs.io/en/stable/filter.html#rank -->
<!-- TODO can we change this to higher rank or remove all together? --> <!-- TODO can we change this to higher rank or remove all together? -->
<Match> <Match>
......
package gov.usgs.earthquake.nshmp.www.gulf; package gov.usgs.earthquake.nshmp.www.gulf;
import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState; import static com.google.common.base.Preconditions.checkState;
import java.io.IOException; import java.io.IOException;
...@@ -109,7 +110,7 @@ public class GulfData { ...@@ -109,7 +110,7 @@ public class GulfData {
*/ */
public double getGulfData(Location loc) { public double getGulfData(Location loc) {
loc = processLocation(loc); loc = processLocation(loc);
return gulfData.get(loc); return checkNotNull(gulfData.get(loc));
} }
/* /*
...@@ -118,7 +119,7 @@ public class GulfData { ...@@ -118,7 +119,7 @@ public class GulfData {
*/ */
public GulfDataResponse getGulfDataResponse(Location loc) { public GulfDataResponse getGulfDataResponse(Location loc) {
loc = processLocation(loc); loc = processLocation(loc);
return new GulfDataResponse(loc, gulfData.get(loc)); return new GulfDataResponse(loc, checkNotNull(gulfData.get(loc)));
} }
/* /*
......
...@@ -33,6 +33,7 @@ import gov.usgs.earthquake.nshmp.www.fault.NshmFaultSection; ...@@ -33,6 +33,7 @@ import gov.usgs.earthquake.nshmp.www.fault.NshmFaultSection;
import gov.usgs.earthquake.nshmp.www.meta.Status; import gov.usgs.earthquake.nshmp.www.meta.Status;
import gov.usgs.earthquake.nshmp.www.services.FaultSectionsService.GroupData; import gov.usgs.earthquake.nshmp.www.services.FaultSectionsService.GroupData;
import gov.usgs.earthquake.nshmp.www.services.FaultSectionsService.RequestData; import gov.usgs.earthquake.nshmp.www.services.FaultSectionsService.RequestData;
import io.micronaut.http.HttpRequest; import io.micronaut.http.HttpRequest;
import io.micronaut.test.extensions.junit5.annotation.MicronautTest; import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
import jakarta.inject.Inject; import jakarta.inject.Inject;
......
...@@ -24,6 +24,7 @@ import gov.usgs.earthquake.nshmp.www.meta.Status; ...@@ -24,6 +24,7 @@ import gov.usgs.earthquake.nshmp.www.meta.Status;
import gov.usgs.earthquake.nshmp.www.services.GpsService; import gov.usgs.earthquake.nshmp.www.services.GpsService;
import gov.usgs.earthquake.nshmp.www.services.GpsService.GpsFormat; import gov.usgs.earthquake.nshmp.www.services.GpsService.GpsFormat;
import gov.usgs.earthquake.nshmp.www.services.GpsService.RequestData; import gov.usgs.earthquake.nshmp.www.services.GpsService.RequestData;
import io.micronaut.http.HttpRequest; import io.micronaut.http.HttpRequest;
import io.micronaut.test.extensions.junit5.annotation.MicronautTest; import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
import jakarta.inject.Inject; import jakarta.inject.Inject;
......
...@@ -19,6 +19,7 @@ import gov.usgs.earthquake.nshmp.www.gulf.GulfData.GulfDataResponse; ...@@ -19,6 +19,7 @@ import gov.usgs.earthquake.nshmp.www.gulf.GulfData.GulfDataResponse;
import gov.usgs.earthquake.nshmp.www.gulf.GulfDataTests.GulfParameterizedTests; import gov.usgs.earthquake.nshmp.www.gulf.GulfDataTests.GulfParameterizedTests;
import gov.usgs.earthquake.nshmp.www.meta.Status; import gov.usgs.earthquake.nshmp.www.meta.Status;
import gov.usgs.earthquake.nshmp.www.services.GulfService.RequestData; import gov.usgs.earthquake.nshmp.www.services.GulfService.RequestData;
import io.micronaut.http.HttpRequest; import io.micronaut.http.HttpRequest;
import io.micronaut.test.extensions.junit5.annotation.MicronautTest; import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
import jakarta.inject.Inject; import jakarta.inject.Inject;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment