Skip to content

Commit

Permalink
Fix formatting in MixinConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Mumfrey committed Jan 23, 2021
1 parent dc3b915 commit 2ef2417
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,13 @@ interface IListener {
private String refMapperConfig;

/**
* The class name for an implementation of {@Link IReferenceMapper}, mixinPackage will be prepended.
* This allows for full control over the refmap for cases where you need more fine-grained
* control then the default remappers.
* The class name for an implementation of {@Link IReferenceMapper},
* mixinPackage will be prepended. This allows for full control over the
* refmap for cases where you need more fine-grained control then the
* default remappers.
*
* Must have a public constructor that takes {@Link MixinEnvironment} and {@Link IReferenceMapper}
* <p>Must have a public constructor that takes {@Link MixinEnvironment} and
* {@Link IReferenceMapper}
*/
@SerializedName("refmapWrapper")
private String refMapperWrapper;
Expand Down Expand Up @@ -665,7 +667,7 @@ void onSelect() {
}

if (this.refMapperWrapper != null) {
String wrapperName = this.mixinPackage + this.refMapperWrapper;
String wrapperName = this.mixinPackage + this.refMapperWrapper;
try {
@SuppressWarnings("unchecked")
Class<IReferenceMapper> wrapperCls = (Class<IReferenceMapper>) Class.forName(wrapperName);
Expand Down

0 comments on commit 2ef2417

Please sign in to comment.