Skip to content

Commit

Permalink
Remove redundant sdk check
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen committed Dec 27, 2024
1 parent c05ccb1 commit ba648ce
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ class InferTypes : CliktCommand() {
val graph = createApplicationGraph(project)

val (dummyMains, allMethods) = EntryPointsProcessor.extractEntryPoints(project)
val publicMethods = allMethods.filter { m ->
m.isPublic && m.signature.enclosingClass.file.projectName !in sdkNames
}
val publicMethods = allMethods.filter { m -> m.isPublic }

val manager = TypeInferenceManager(EtsTraits(), graph)

Expand Down

0 comments on commit ba648ce

Please sign in to comment.