Skip to content

Commit e267e4a

Browse files
Fix codestyle
1 parent e50be8e commit e267e4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jmeter-java-dsl-websocket/src/main/java/us/abstracta/jmeter/javadsl/websocket/DslWebsocketSampler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ public static DslWebsocketSampler webSocketSampler() {
8383
* {@link #disconnect()} when finished.
8484
*
8585
* @return the connect sampler for further configuration or usage
86-
* @since 2.2
8786
* @see #link {@link DslConnectSampler#server(String)}
8887
* @see #link {@link DslConnectSampler#port(int)}
8988
* @see #link {@link DslConnectSampler#path(String)}
9089
* @see #link {@link DslConnectSampler#tls(boolean)}
90+
* @since 2.2
9191
*/
9292
public static DslConnectSampler connect() {
9393
return new DslConnectSampler();
@@ -138,8 +138,8 @@ public static DslDisconnectSampler disconnect() {
138138
* {@link #connect(String)}.
139139
*
140140
* @return the write sampler for further configuration or usage
141-
* @since 2.2
142141
* @see #link {@link DslWriteSampler#requestData(String)}
142+
* @since 2.2
143143
*/
144144
public static DslWriteSampler write() {
145145
return new DslWriteSampler();
@@ -151,8 +151,8 @@ public static DslWriteSampler write() {
151151
* Requires an active WebSocket connection established via
152152
* {@link #connect(String)}.
153153
*
154-
* @return the write sampler for further configuration or usage
155154
* @param requestData the message to send to the WebSocket server
155+
* @return the write sampler for further configuration or usage
156156
* @since 2.2
157157
*/
158158
public static DslWriteSampler write(String requestData) {

0 commit comments

Comments
 (0)