Skip to content

Commit

Permalink
style: Nullbale format
Browse files Browse the repository at this point in the history
  • Loading branch information
hishidama committed May 21, 2024
1 parent 964718a commit 9e87267
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public abstract class TgsqlCvKey<T> {
/** sql.timing . */
public static final TgsqlCvKeyBoolean SQL_TIMING = new TgsqlCvKeyBoolean("sql.timing"); //$NON-NLS-1$

// @see DotOutputHandler#extendOptions(Map, TgsqlClientVariableMap)
/** dot.verbose . */
public static final TgsqlCvKeyBoolean DOT_VERBOSE = new TgsqlCvKeyBoolean(DotOutputHandler.KEY_VERBOSE);
/** dot.output . */
Expand Down Expand Up @@ -242,8 +243,7 @@ public static Set<String> getKeyNames() {
* @param name variable name
* @return key
*/
@Nullable
public static TgsqlCvKey<?> find(String name) {
public static @Nullable TgsqlCvKey<?> find(String name) {
return KEY_MAP.get(name);
}

Expand Down

0 comments on commit 9e87267

Please sign in to comment.