Skip to content

Commit

Permalink
#1039 Groovy --> Kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoraboeuf committed Nov 1, 2022
1 parent a7597a0 commit bf84d09
Show file tree
Hide file tree
Showing 4 changed files with 529 additions and 405 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,26 +180,6 @@ public static <T, R> DataFetcher<R> fetcher(Class<T> sourceType, BiFunction<Data
};
}

public static String lowerCamelCase(String text) {
if (text == null) {
return null;
} else if (StringUtils.isBlank(text)) {
return "";
} else {
return StringUtils.uncapitalize(
StringUtils.remove(
WordUtils.capitalizeFully(
StringUtils.replacePattern(
text,
"[^A-Za-z0-9]",
" "
),
' '),
" ")
);
}
}

public static List<GraphQLArgument> stdListArguments() {
return Arrays.asList(
GraphQLArgument.newArgument()
Expand Down

This file was deleted.

Loading

0 comments on commit bf84d09

Please sign in to comment.