Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Steanky committed Jan 17, 2023
1 parent 3eac315 commit 62dc34c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "com.github.steanky"
version = "0.11.1"
version = "0.11.2"

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public ModuleDependencyProvider(final @NotNull KeyParser keyParser, final @NotNu
final Memoize moduleClassMemoize = moduleClass.getAnnotation(Memoize.class);
final boolean defaultMemoize = moduleClassMemoize != null && moduleClassMemoize.value();

final Method[] methods = moduleClass.getMethods();
final Method[] methods = moduleClass.getDeclaredMethods();

//this variable is temporary, will be transformed into an immutable map later
final Map<Token<?>, Map<String, Supplier<?>>> dependencyMap = new HashMap<>();
Expand Down

0 comments on commit 62dc34c

Please sign in to comment.