Skip to content
Snippets Groups Projects
Commit 52ff6a0e authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

cleanup

parent 3f5548e2
No related branches found
No related tags found
1 merge request!507Hazard response
package gov.usgs.earthquake.nshmp.www.meta;
@SuppressWarnings("unused")
public class Parameter {
private final String display;
......
......@@ -247,11 +247,11 @@ public final class HazardService {
private static final class ResponseData {
final ResponseMetadata metadata;
final List<HazardResponse> hazards;
final List<HazardResponse> hazardCurves;
ResponseData(ResponseMetadata metadata, List<HazardResponse> hazards) {
ResponseData(ResponseMetadata metadata, List<HazardResponse> hazardCurves) {
this.metadata = metadata;
this.hazards = hazards;
this.hazardCurves = hazardCurves;
}
}
......
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