File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
src/main/java/org/java_websocket Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ To use maven add this dependency to your pom.xml:
3535<dependency >
3636 <groupId >org.java-websocket</groupId >
3737 <artifactId >Java-WebSocket</artifactId >
38- <version >1.3.6 </version >
38+ <version >1.3.7 </version >
3939</dependency >
4040```
4141
@@ -46,7 +46,7 @@ mavenCentral()
4646```
4747Then you can just add the latest version to your build.
4848``` xml
49- compile "org.java-websocket:Java-WebSocket:1.3.6 "
49+ compile "org.java-websocket:Java-WebSocket:1.3.7 "
5050```
5151
5252Running the Examples
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ repositories {
99}
1010
1111group = ' org.java_websocket'
12- version = ' 1.3.6 '
12+ version = ' 1.3.7 '
1313sourceCompatibility = 1.6
1414targetCompatibility = 1.6
1515
Original file line number Diff line number Diff line change 33 <groupId >org.java-websocket</groupId >
44 <artifactId >Java-WebSocket</artifactId >
55 <packaging >jar</packaging >
6- <version >1.3.7 -dev</version >
6+ <version >1.3.8 -dev</version >
77 <name >Java-WebSocket</name >
88 <description >A barebones WebSocket client and server implementation written 100% in Java</description >
99 <url >https://github.com/TooTallNate/Java-WebSocket</url >
Original file line number Diff line number Diff line change @@ -226,13 +226,15 @@ enum READYSTATE {
226226 * The attachment may be of any type.
227227 *
228228 * @param attachment The object to be attached to the user
229+ * @param <T> The type of the attachment
229230 * @since 1.3.7
230231 **/
231232 <T > void setAttachment (T attachment );
232233
233234 /**
234235 * Getter for the connection attachment.
235- *
236+ *
237+ * @param <T> The type of the attachment
236238 * @return Returns the user attachment
237239 * @since 1.3.7
238240 **/
You can’t perform that action at this time.
0 commit comments