Skip to content

Commit

Permalink
Internal change.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 581989087
  • Loading branch information
java-team-github-bot authored and Guice Team committed Nov 13, 2023
1 parent 87d262c commit e23d3b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/com/google/inject/internal/KotlinSupport.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,10 @@ public void checkConstructorParameterAnnotations(Constructor<?> constructor, Err
public boolean isLocalClass(Class<?> clazz) {
return false;
}

@Override
public boolean isValueClass(Class<?> clazz) {
return false;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ public interface KotlinSupportInterface {

/** Returns whether the {@code clazz} is a local Kotlin class. */
boolean isLocalClass(Class<?> clazz);

/** Returns whether the {@code clazz} is a Kotlin value class. */
boolean isValueClass(Class<?> clazz);
}
1 change: 1 addition & 0 deletions core/test/com/google/inject/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ java_library(
deps = [
":add_opens_tests",
":tests",
"//core/src/com/google/inject",
"//core/test/com/googlecode/guice:tests",
"//third_party/java/junit",
],
Expand Down

0 comments on commit e23d3b4

Please sign in to comment.