Skip to content

Remove unused java.xml dependency from module-info.java #959

@derTobsch

Description

@derTobsch

The module descriptor currently declares a dependency on java.xml, but this module is not actually used anywhere in the codebase.

Keeping unused module dependencies increases maintenance overhead and may introduce unnecessary coupling. Since there are no imports or usages of the java.xml API in the project, the dependency can safely be removed.

Current state

module-info.java contains:

requires java.xml;

However, there are no references to classes from the java.xml module (e.g., javax.xml.*, org.w3c.dom.*, org.xml.sax.*, etc.) in the codebase.

Metadata

Metadata

Assignees

No one assigned

    Labels

    status: newInitial state for every issue / pull requesttype: enhancementA general enhancement

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions