Skip to content

Commit 14e0991

Browse files
committed
fix mini bug
1 parent a2216b8 commit 14e0991

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'de.mint.consoleline'
8-
version '1.1.0'
8+
version '1.1.0-1'
99

1010
java {
1111
toolchain {

src/main/java/de/mint/consoleline/Format/CustomFormat.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ public class CustomFormat {
77

88
private String stringFormat;
99

10-
private CustomColors previewColor;
10+
private String previewColor;
1111

1212
private SimpleDateFormat simpleDateFormat;
1313

1414
private String message;
1515

1616
public CustomFormat(
1717
String stringFormat,
18-
CustomColors previewColor,
18+
String previewColor,
1919
SimpleDateFormat simpleDateFormat,
2020
String message) {
2121
this.stringFormat = stringFormat;
@@ -41,7 +41,7 @@ public String getStringFormat() {
4141
return stringFormat;
4242
}
4343

44-
public CustomColors getPreviewColor() {
44+
public String getPreviewColor() {
4545
return previewColor;
4646
}
4747

0 commit comments

Comments
 (0)