Skip to content

Error: ClassCastException at CustomTable.TableTransferable.getSourceComponent() in Version 1.0.0.v7 #127

Description

@karakal

There is an error in this function in the class CustomTable. It leads to a ClassCastException. There was an Issue (#45) already but it wasn't appearantly not fixed for v7.

wrong code (CustomTable:4711):

@Override
public Table getSourceComponent() {
   return (Table) super.getSourceComponent();
}

corrected code:

@Override
public CustomTable getSourceComponent() {
   return (CustomTable) super.getSourceComponent();
}

Please fix this...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions