You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then the types become fully qualified on parsing, i.e. the packages are not marked implicit. This is a big problem for sniper printing, as the sniper ends up printing e.g. java.lang.Exception instead of just Exception.
This is most likely related to #3800, in which I fixed the very same problem but for a single type in the catcher.
The text was updated successfully, but these errors were encountered:
When a try-catch has a catcher with a single type, it properly gets marked as simply qualified (i.e. package is implicit):
However, when specifying multiple types in the catcher, like so:
then the types become fully qualified on parsing, i.e. the packages are not marked implicit. This is a big problem for sniper printing, as the sniper ends up printing e.g.
java.lang.Exception
instead of justException
.This is most likely related to #3800, in which I fixed the very same problem but for a single type in the catcher.
The text was updated successfully, but these errors were encountered: