Skip to content

Commit

Permalink
Remove deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Mar 26, 2024
1 parent 8473e47 commit 1c230d5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/main/java/net/neoforged/art/api/Transformer.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,6 @@ static Factory renamerFactory(IMappingFile map, boolean collectAbstractParams) {
return ctx -> new RenamingTransformer(ctx.getClassProvider(), map, ctx.getLog(), collectAbstractParams);
}

/**
* Create a transformer that applies mappings as a transformation.
*
* @param map the mapping information to remap with
* @return a factory for a renaming transformer
*
* @deprecated use {@link #renamerFactory(IMappingFile, boolean)} insteead
*/
@Deprecated
static Factory renamerFactory(IMappingFile map) {
return renamerFactory(map, true);
}

/**
* Create a transformer that renames any local variables that are not valid java identifiers.
*
Expand Down

0 comments on commit 1c230d5

Please sign in to comment.