Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
karan-batavia committed May 28, 2024
1 parent ac31d60 commit b7fb5fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "joern"
ThisBuild / organization := "io.joern"
ThisBuild / scalaVersion := "3.4.2"

val cpgVersion = "0.1.4"
val cpgVersion = "0.1.5"

lazy val joerncli = Projects.joerncli
lazy val querydb = Projects.querydb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ import io.joern.javasrc2cpg.astcreation.declarations.AstForMethodsCreator.Partia

private[declarations] trait AstForMethodsCreator { this: AstCreator =>
def astForMethod(methodDeclaration: MethodDeclaration): Ast = {
val methodNode = createPartialMethod(methodDeclaration)
println("Some method")
val methodNode = createPartialMethod(methodDeclaration)
val typeParameters = getIdentifiersForTypeParameters(methodDeclaration)

val maybeResolved = tryWithSafeStackOverflow(methodDeclaration.resolve())
Expand Down

0 comments on commit b7fb5fd

Please sign in to comment.