Skip to content

Commit

Permalink
Fix category constant names
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunayf committed Sep 28, 2024
1 parent 482c7ca commit 82c0d11
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
*/
public record Category(String name, List<Variable> types) {

public static String MODULE_CATEGORY = "Module Variables";
public static String CONFIGURABLE_CATEGORY = "Configurable Variables";
public static String LOCAL_CATEGORY = "Local Variables";
public static final String MODULE_CATEGORY = "Module Variables";
public static final String CONFIGURABLE_CATEGORY = "Configurable Variables";
public static final String LOCAL_CATEGORY = "Local Variables";

public record Variable(String name, Type type) {
}
Expand Down

0 comments on commit 82c0d11

Please sign in to comment.