Skip to content

Commit 94686e1

Browse files
committed
Added without hex color processing.
1 parent 7013bc3 commit 94686e1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/main/java/net/matrixcreations/libraries/MatrixColorAPI.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
package net.matrixcreations.libraries;
22

3-
import net.matrixcreations.libraries.utils.GradientUtils;
4-
import net.matrixcreations.libraries.utils.HexColorUtils;
5-
import net.matrixcreations.libraries.utils.LegacyCodeUtils;
6-
import net.matrixcreations.libraries.utils.SolidColorUtils;
3+
import net.matrixcreations.libraries.utils.*;
74

85
import java.util.List;
96
import java.util.stream.Collectors;
@@ -14,7 +11,8 @@ public static String process(String text) {
1411
text = GradientUtils.processGradients(text);
1512
text = SolidColorUtils.processSolidColors(text);
1613
text = HexColorUtils.processHexColors(text);
17-
return LegacyCodeUtils.processLegacyCodes(text);
14+
text = WithoutHexUtils.process(text);
15+
return LegacyCodeUtils.processLegacyCodes(text) ;
1816
}
1917

2018
public static List<String> process(List<String> texts) {

0 commit comments

Comments
 (0)