From 666f707e5541cb1cad53ef2453c1a0847c1b3530 Mon Sep 17 00:00:00 2001
From: bclayton-usgs <bclayton@usgs.gov>
Date: Tue, 2 Jun 2020 15:29:20 -0600
Subject: [PATCH] spotlessApply

---
 .../nshmp/aws/HazardResultsSlicerLambda.java     |  2 +-
 .../gov/usgs/earthquake/nshmp/etc/HazMat.java    |  6 +++---
 .../nshmp/www/DeaggEpsilonController.java        |  4 ++--
 .../earthquake/nshmp/www/HazardController.java   | 10 +++++-----
 .../earthquake/nshmp/www/RateController.java     | 16 ++++++++--------
 .../earthquake/nshmp/www/SourceController.java   | 10 +++++-----
 .../earthquake/nshmp/www/meta/package-info.java  |  2 +-
 src/main/resources/logback.xml                   |  2 +-
 8 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/src/main/java/gov/usgs/earthquake/nshmp/aws/HazardResultsSlicerLambda.java b/src/main/java/gov/usgs/earthquake/nshmp/aws/HazardResultsSlicerLambda.java
index 8178a79c4..f48d7babe 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/aws/HazardResultsSlicerLambda.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/aws/HazardResultsSlicerLambda.java
@@ -36,7 +36,7 @@ import gov.usgs.earthquake.nshmp.www.services.ServletUtil;
 /**
  * AWS Lambda function to read in hazard results from S3 and to create slices of
  * return periods of interest.
- * 
+ *
  * @see HazardResultSliceLambda
  */
 @SuppressWarnings("unused")
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/etc/HazMat.java b/src/main/java/gov/usgs/earthquake/nshmp/etc/HazMat.java
index 05bdc38fc..48ad5d38f 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/etc/HazMat.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/etc/HazMat.java
@@ -12,7 +12,7 @@ public class HazMat {
 
   /*
    * Developer notes:
-   * 
+   *
    * Mathworks has gone out of its way to make it more and more difficult to use
    * Java in Matlab as time goes on, despite it being a first-class citizen.
    * Specifically, the Matlab classpath includes a dizzying number of 3rd party
@@ -26,14 +26,14 @@ public class HazMat {
    * it's dependency on Guava, but putting nshmp-haz early on the Matlab
    * classpath causes Matlab to crash as it can't find (now missing) methods in
    * Guava.
-   * 
+   *
    * The unsatisfactory but functional workaround is to use a custom class
    * loader that, once we want to use nshmp-haz classes, scans nshmp-haz.jar
    * before looking in the matlab classpath. This approach is messy in that the
    * sole point of entry is this class, which delegates to HazMatHelper (loaded
    * with the custom class loader) and the methods of which must be accessed via
    * reflection.
-   * 
+   *
    * Note that if nshmp-haz moves to Java 8, which will probably occur sooner
    * rather than later, the custom class loader will also have to have Java 8 on
    * it's classpath. Sigh.
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/www/DeaggEpsilonController.java b/src/main/java/gov/usgs/earthquake/nshmp/www/DeaggEpsilonController.java
index df7472f33..ab2976d4e 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/www/DeaggEpsilonController.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/www/DeaggEpsilonController.java
@@ -45,7 +45,7 @@ public class DeaggEpsilonController {
 
   /**
    * GET method to return usage or hazard curves, query based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
@@ -82,7 +82,7 @@ public class DeaggEpsilonController {
 
   /**
    * GET method to return usage or hazard curves, slash based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/www/HazardController.java b/src/main/java/gov/usgs/earthquake/nshmp/www/HazardController.java
index 7a5b67010..73942632e 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/www/HazardController.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/www/HazardController.java
@@ -21,9 +21,9 @@ import io.swagger.v3.oas.annotations.tags.Tag;
 
 /**
  * Micronaut controller for probabilistic seismic hazard calculations.
- * 
+ *
  * @see HazardService
- * 
+ *
  * @author U.S. Geological Survey
  */
 @Tag(
@@ -37,7 +37,7 @@ public class HazardController {
 
   /**
    * GET method to return the hazard usage.
-   * 
+   *
    * @param request The HTTP request
    */
   @Operation(
@@ -56,7 +56,7 @@ public class HazardController {
 
   /**
    * GET method to return usage or hazard curves, query based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
@@ -88,7 +88,7 @@ public class HazardController {
 
   /**
    * GET method to return usage or hazard curves, slash based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/www/RateController.java b/src/main/java/gov/usgs/earthquake/nshmp/www/RateController.java
index e8830a488..caaa0379f 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/www/RateController.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/www/RateController.java
@@ -23,9 +23,9 @@ import io.swagger.v3.oas.annotations.responses.ApiResponse;
 
 /**
  * Micronaut controller for rate and probability services.
- * 
+ *
  * @see RateService
- * 
+ *
  * @author U.S. Geological Survey
  */
 @Controller("/")
@@ -36,7 +36,7 @@ public class RateController {
 
   /**
    * GET method to return the usage information on the rate service.
-   * 
+   *
    * @param request The HTTP request
    */
   @Operation(
@@ -55,7 +55,7 @@ public class RateController {
 
   /**
    * GET method to compute annual-rate, query based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
@@ -94,7 +94,7 @@ public class RateController {
 
   /**
    * GET method to compute annual-rate, slash based
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
@@ -133,7 +133,7 @@ public class RateController {
 
   /**
    * GET method to return the usage information on the probability service.
-   * 
+   *
    * @param request The HTTP request
    */
   @Operation(
@@ -153,7 +153,7 @@ public class RateController {
 
   /**
    * GET method to compute probability, query based.
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
@@ -197,7 +197,7 @@ public class RateController {
 
   /**
    * GET method to compute probability, slash based
-   * 
+   *
    * @param request The HTTP request
    * @param longitude Longitude (in decimal degrees) ([-360, 360])
    * @param latitude Latitude (in decimal degrees) ([-90, 90])
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/www/SourceController.java b/src/main/java/gov/usgs/earthquake/nshmp/www/SourceController.java
index 8a2f74c6f..618b77b55 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/www/SourceController.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/www/SourceController.java
@@ -16,14 +16,14 @@ import io.swagger.v3.oas.annotations.tags.Tag;
 
 /**
  * Source model service to return the current installed model.
- * 
+ *
  * <p> See src/main/resources/applicaiton.yml nshmp-haz.installed-model for
  * default model used
- * 
+ *
  * <p> To run the Micronaut jar file with a model: java -jar
  * path/to/nshmp-haz-v2-all.jar -model=<{@code Model}>
- * 
- * 
+ *
+ *
  * @author U.S. Geological Survey
  */
 @Tag(name = "Source Model")
@@ -35,7 +35,7 @@ public class SourceController {
 
   /**
    * GET method to return the source model usage
-   * 
+   *
    * @param request The HTTP request
    */
   @Operation(
diff --git a/src/main/java/gov/usgs/earthquake/nshmp/www/meta/package-info.java b/src/main/java/gov/usgs/earthquake/nshmp/www/meta/package-info.java
index 891b3a5f7..ea198d902 100644
--- a/src/main/java/gov/usgs/earthquake/nshmp/www/meta/package-info.java
+++ b/src/main/java/gov/usgs/earthquake/nshmp/www/meta/package-info.java
@@ -1,6 +1,6 @@
 /**
  * Web-service metadata support classes.
- * 
+ *
  * <p>Classes in this package largely provide support for web services used on
  * the public facing USGS website. Services that are not public facing may use a
  * simpler metadata structure defined within the service class itself (e.g.
diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml
index f7f49d44d..f74e41693 100644
--- a/src/main/resources/logback.xml
+++ b/src/main/resources/logback.xml
@@ -3,7 +3,7 @@
   <appender name="STDOUT"
     class="ch.qos.logback.core.ConsoleAppender">
     <withJansi>true</withJansi>
-    <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder 
+    <!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder
       by default -->
     <encoder>
       <pattern>%cyan(%d{HH:mm:ss.SSS}) %gray([%thread])
-- 
GitLab