1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-13 20:29:41 +02:00

Fix typo in StreamInitiation.setSesssionID()

Fixes SMACK-427
This commit is contained in:
Florian Schmaus 2014-02-10 14:00:08 +01:00
parent 7ba3c3d43f
commit 7bba6b7f91
3 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ public class StreamInitiation extends IQ {
*
* @param id The "id" attribute.
*/
public void setSesssionID(final String id) {
public void setSessionID(final String id) {
this.id = id;
}
@ -54,7 +54,7 @@ public class StreamInitiation extends IQ {
* Uniquely identifies a stream initiation to the recipient.
*
* @return The "id" attribute.
* @see #setSesssionID(String)
* @see #setSessionID(String)
*/
public String getSessionID() {
return id;