Skip to content

Commit

Permalink
More javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfee-usgs committed Nov 20, 2020
1 parent 8216c50 commit aaa2986
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Only SQLITE or local development should rely on createSchema.
* Products (data column) have exceeded 64kb, plan accordingly.
*
* Mysql Schema Example:<br/>
* Mysql Schema Example:<br>
* <pre>
* CREATE TABLE IF NOT EXISTS indexer_receiver_index
* (id INTEGER PRIMARY KEY AUTO_INCREMENT
Expand Down Expand Up @@ -389,11 +389,11 @@ public synchronized List<Notification> findNotifications(
/**
* Search index for notifications.
*
* @param source
* @param sources
* sources, or null for all sources.
* @param type
* @param types
* types, or null for all types.
* @param code
* @param codes
* codes, or null for all codes.
* @return list with matching notifications, empty if not found.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Only SQLITE or local development should rely on createSchema.
* Products (data column) have exceeded 64kb, plan accordingly.
*
* Mysql Schema Example:<br/>
* Mysql Schema Example:<br>
* <pre>
* CREATE TABLE IF NOT EXISTS indexer_storage
* (id INTEGER PRIMARY KEY AUTO_INCREMENT
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gov/usgs/earthquake/aws/TrackingIndex.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* Only SQLITE or local development should rely on createSchema.
*
* Mysql Schema Example:<br/>
* Mysql Schema Example:<br>
* <pre>
* CREATE TABLE IF NOT EXISTS tracking_index
* (id INTEGER PRIMARY KEY AUTO_INCREMENT
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gov/usgs/earthquake/eids/QuakemlUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class QuakemlUtils {
* If a quakeml event object does not exist, check for the first internal or
* scenario event.
*
* @param event
* @param eventParameters
* @return
*/
public static Event getFirstEvent(final EventParameters eventParameters) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Data URLs handler.
*
* "data:[<mediatype>][;base64],<data>"
* "data:[&lt;mediatype&gt;][;base64],&lt;data&gt;"
*/
public class Handler extends URLStreamHandler {

Expand Down

0 comments on commit aaa2986

Please sign in to comment.