Skip to content

redundant exception catch variables #80

Description

@wzydhek

It seems there are a lot of cases in try-catch blocks where there is a redundant exception variable created in the disassembly:

        } catch (SQLException var15) {
            SQLException sqex = var15;
            logger.log(Level.WARNING, this.name + " " + sqex.getMessage(), sqex);

should decompile as

        } catch (SQLException sqex) {
            logger.log(Level.WARNING, this.name + " " + sqex.getMessage(), sqex);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions