net.neoforged.art.api.SignatureStripperConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AutoRenamingTool Show documentation
Show all versions of AutoRenamingTool Show documentation
A tool that renames java bytecode elements.
The newest version!
/*
* Copyright (c) Forge Development LLC and contributors
* SPDX-License-Identifier: LGPL-2.1-only
*/
package net.neoforged.art.api;
/**
* Signature stripper transformation strategy for {@link Transformer#signatureStripperFactory(SignatureStripperConfig)}.
*/
public enum SignatureStripperConfig {
/**
* Strips all signature entries from manifests.
*/
ALL;
// INVALID_ONLY could be implemented if desired
}