Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMil committed Oct 21, 2024
1 parent 7bf5025 commit 2257f53
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -395,11 +395,12 @@ public void caseAssignStmt(AssignStmt stmt) {
// At the very least, the the type for this array should be whatever its
// base type is
et = bt;
if (logger.isDebugEnabled())
if (logger.isDebugEnabled()) {
//This can happen in rare cases in Android for int/float and long/double arrays
logger.debug(
"Could not find any indication on the array type of " + stmt + " in " + jb.getMethod().getSignature(),
", assuming its base type is " + bt);
}
}

at = et.makeArrayType();
Expand Down

0 comments on commit 2257f53

Please sign in to comment.