1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-12 10:39:38 +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;