File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/main/java/net/matrixcreations/libraries Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
package net .matrixcreations .libraries ;
2
2
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 .*;
7
4
8
5
import java .util .List ;
9
6
import java .util .stream .Collectors ;
@@ -14,7 +11,8 @@ public static String process(String text) {
14
11
text = GradientUtils .processGradients (text );
15
12
text = SolidColorUtils .processSolidColors (text );
16
13
text = HexColorUtils .processHexColors (text );
17
- return LegacyCodeUtils .processLegacyCodes (text );
14
+ text = WithoutHexUtils .process (text );
15
+ return LegacyCodeUtils .processLegacyCodes (text ) ;
18
16
}
19
17
20
18
public static List <String > process (List <String > texts ) {
You can’t perform that action at this time.
0 commit comments