File tree 4 files changed +1
-244
lines changed
src/main/java/net/neoforged/installertools
4 files changed +1
-244
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ dependencies {
72
72
implementation(libs. srgutils)
73
73
implementation(libs. jopt)
74
74
implementation ' com.google.code.gson:gson:2.8.9'
75
- implementation ' net.md-5:SpecialSource:1.11.0'
76
75
implementation ' de.siegmar:fastcsv:2.0.0'
77
76
implementation ' org.ow2.asm:asm-commons:9.3'
78
77
implementation project(' :cli-utils' )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ public enum Tasks {
24
24
MCP_DATA (McpData ::new ),
25
25
CREATE_DIR (CreateDirectory ::new ),
26
26
CREATE_PARENTS (CreateParents ::new ),
27
- DEOBF_REALMS (DeobfRealms ::new ),
28
27
SRG_TO_MCP (SrgMcpRenamer ::new ),
29
28
EXTRACT_INHERITANCE (ExtractInheritance ::new ),
30
29
CHAIN_MAPPING (ChainMappings ::new ),
Original file line number Diff line number Diff line change 18
18
*/
19
19
package net .neoforged .installertools .util ;
20
20
21
- import com .google .common .base .Splitter ;
22
- import com .google .common .collect .Iterables ;
23
-
24
21
import java .io .File ;
25
22
import java .util .Locale ;
26
23
@@ -42,7 +39,7 @@ public static Artifact from(String descriptor) {
42
39
Artifact ret = new Artifact ();
43
40
ret .descriptor = descriptor ;
44
41
45
- String [] pts = Iterables . toArray ( Splitter . on ( ':' ). split (descriptor ), String . class );
42
+ String [] pts = descriptor . split (":" );
46
43
ret .group = pts [0 ];
47
44
ret .name = pts [1 ];
48
45
You can’t perform that action at this time.
0 commit comments