Skip to content

Commit a166555

Browse files
committed
fix - i did not added in builder construct
1 parent 8975d52 commit a166555

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
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.0.8'
8+
version '1.0.8-1'
99

1010
java {
1111
toolchain {

src/main/java/de/mint/consoleline/service/JlineBuilder.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,22 @@ public JlineBuilder setScheduleExecutorService(final ScheduledExecutorService sc
112112
return this;
113113
}
114114

115+
116+
public JlineBuilder setCommandArgumentNotAvailableFormat(String[] commandArgumentNotAvailableFormat) {
117+
this.jlineConfiguration.setCommandArgumentNotAvailableFormat(commandArgumentNotAvailableFormat);
118+
return this;
119+
}
120+
121+
public JlineBuilder setCommandNotAvailableFormat(String[] commandNotAvailableFormat) {
122+
this.jlineConfiguration.setCommandNotAvailableFormat(commandNotAvailableFormat);
123+
return this;
124+
}
125+
126+
public JlineBuilder setCommand(final ScheduledExecutorService scheduledExecutorService){
127+
this.jlineConfiguration.setScheduledExecutorService(scheduledExecutorService);
128+
return this;
129+
}
130+
115131
public JlineBuilder setPeriod(final long period) {
116132
this.jlineConfiguration.setPeriod(period);
117133
return this;

0 commit comments

Comments
 (0)