Skip to content

Commit b025a2c

Browse files
committed
Adapt to latest vertx-core changes
1 parent df895a6 commit b025a2c

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/main/asciidoc/dataobjects.adoc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
Set the charset used for encoding / decoding text data from/to SockJS
2323
+++
2424
|[[clientAuth]]`@clientAuth`|`link:enums.html#ClientAuth[ClientAuth]`|-
25-
|[[clientAuthRequired]]`@clientAuthRequired`|`Boolean`|-
2625
|[[compressionLevel]]`@compressionLevel`|`Number (int)`|-
2726
|[[compressionSupported]]`@compressionSupported`|`Boolean`|-
2827
|[[crlPaths]]`@crlPaths`|`Array of String`|-
@@ -83,7 +82,6 @@ Set <code>term.js</code> resource to use.
8382
|[[trafficClass]]`@trafficClass`|`Number (int)`|-
8483
|[[trustStoreOptions]]`@trustStoreOptions`|`link:dataobjects.html#JksOptions[JksOptions]`|-
8584
|[[useAlpn]]`@useAlpn`|`Boolean`|-
86-
|[[usePooledBuffers]]`@usePooledBuffers`|`Boolean`|-
8785
|[[vertsShellJsResource]]`@vertsShellJsResource`|`Buffer`|+++
8886
Set <code>vertxshell.js</code> resource to use.
8987
+++
@@ -202,7 +200,6 @@ Set the shell welcome message, i.e the message displayed in the user console whe
202200
Set the charset to use when binary mode is active, see link and link.
203201
+++
204202
|[[clientAuth]]`@clientAuth`|`link:enums.html#ClientAuth[ClientAuth]`|-
205-
|[[clientAuthRequired]]`@clientAuthRequired`|`Boolean`|-
206203
|[[crlPaths]]`@crlPaths`|`Array of String`|-
207204
|[[crlValues]]`@crlValues`|`Array of Buffer`|-
208205
|[[enabledCipherSuites]]`@enabledCipherSuites`|`Array of String`|-
@@ -245,6 +242,5 @@ Set the telnet connection to negociate binary data format when sending to the cl
245242
|[[trafficClass]]`@trafficClass`|`Number (int)`|-
246243
|[[trustStoreOptions]]`@trustStoreOptions`|`link:dataobjects.html#JksOptions[JksOptions]`|-
247244
|[[useAlpn]]`@useAlpn`|`Boolean`|-
248-
|[[usePooledBuffers]]`@usePooledBuffers`|`Boolean`|-
249245
|===
250246

src/main/java/io/vertx/ext/shell/term/TelnetTermOptions.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,6 @@ public TelnetTermOptions setPort(int port) {
191191
return (TelnetTermOptions) super.setPort(port);
192192
}
193193

194-
@Override
195-
public TelnetTermOptions setClientAuthRequired(boolean clientAuthRequired) {
196-
return (TelnetTermOptions) super.setClientAuthRequired(clientAuthRequired);
197-
}
198-
199194
public boolean getOutBinary() {
200195
return outBinary;
201196
}

0 commit comments

Comments
 (0)