Skip to content

Commit

Permalink
Fix javadoc check failures
Browse files Browse the repository at this point in the history
Signed-off-by: Rishabh Maurya <[email protected]>
  • Loading branch information
rishabhmaurya committed Apr 2, 2024
1 parent 0e89b18 commit 02e69e4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions server/src/main/java/org/opensearch/script/ScriptEmitValues.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
*/
public final class ScriptEmitValues {

// Takes in a single value and emits it
// Could be a long, double, String, etc.
/**
* Takes in a single value and emits it
* Could be a long, double, String, etc.
*/
public static final class EmitSingle {

private final DerivedFieldScript derivedFieldScript;
Expand All @@ -41,7 +43,9 @@ public void emit(Object val) {

}

// Emits a GeoPoint value
/**
* Emits a GeoPoint value
*/
public static final class GeoPoint {

private final DerivedFieldScript derivedFieldScript;
Expand Down

0 comments on commit 02e69e4

Please sign in to comment.