Skip to content

Commit

Permalink
Added Yaml class.
Browse files Browse the repository at this point in the history
  • Loading branch information
hakan-krgn committed Mar 23, 2022
1 parent c658b4a commit d532047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/main/java/com/hakan/core/utils/HYaml.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public Object get(@Nonnull String path) {
return this.fileConfiguration.get(path);
}

public Object get(@Nonnull String path,@Nonnull Object def) {
public Object get(@Nonnull String path, @Nonnull Object def) {
Validate.notNull(path, "path cannot be null!");
return this.fileConfiguration.get(path, def);
}
Expand Down

0 comments on commit d532047

Please sign in to comment.