Skip to content

Commit f0706ec

Browse files
Cleaned up token replacement
1 parent 0610ed5 commit f0706ec

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

buildSrc/src/main/groovy/com.viaversion.java-conventions.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,11 @@ java.sourceCompatibility = JavaVersion.VERSION_1_8
5252
tasks {
5353
// Variable replacements
5454
processResources {
55-
inputs.properties(
56-
"version": project.version,
57-
"description": project.description
58-
)
59-
6055
for (final def file in ["plugin.yml", "bungee.yml", "META-INF/sponge_plugins.json", "fabric.mod.json"]) {
6156
filesMatching(file) {
6257
expand(
63-
"version": version,
64-
"description": description
58+
"version": project.version,
59+
"description": project.description
6560
)
6661
}
6762
}

common/src/main/java/com/viaversion/viarewind/api/rewriter/ReplacementEntityTracker.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
package com.viaversion.viarewind.api.rewriter;
2020

21-
import com.viaversion.viarewind.protocol.protocol1_7_6_10to1_8.metadata.MetaIndex1_7_6_10To1_8;
22-
import com.viaversion.viarewind.protocol.protocol1_7_6_10to1_8.types.metadata.MetaType1_7_6_10;
2321
import com.viaversion.viaversion.api.connection.StoredObject;
2422
import com.viaversion.viaversion.api.connection.UserConnection;
2523
import com.viaversion.viaversion.api.data.entity.ClientEntityIdChangeListener;

0 commit comments

Comments
 (0)