Skip to content

Commit

Permalink
remove superfluous comments
Browse files Browse the repository at this point in the history
All IDEs will show that anyway,
and we should rather use the Override annotation.
  • Loading branch information
hoijui committed Feb 15, 2016
1 parent 36d6ba9 commit 2daa740
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions src/main/java/net/java/otr4j/session/SessionImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,6 @@ private void setSessionStatus(SessionStatus sessionStatus)
l.sessionStatusChanged(getSessionID());
}

/*
* (non-Javadoc)
*
* @see net.java.otr4j.session.ISession#getSessionStatus()
*/
public SessionStatus getSessionStatus() {
if (this.slaveSessions.isSelected() && getProtocolVersion() == OTRv.THREE) {
return this.slaveSessions.getSelected().getSessionStatus();
Expand All @@ -314,11 +309,6 @@ private void setSessionID(SessionID sessionID) {
this.sessionID = sessionID;
}

/*
* (non-Javadoc)
*
* @see net.java.otr4j.session.ISession#getSessionID()
*/
public SessionID getSessionID() {
return sessionID;
}
Expand Down Expand Up @@ -349,12 +339,6 @@ private Vector<byte[]> getOldMacKeys() {
return oldMacKeys;
}

/*
* (non-Javadoc)
*
* @see
* net.java.otr4j.session.ISession#handleReceivingMessage(java.lang.String)
*/
public String transformReceiving(String msgText) throws OtrException {

OtrPolicy policy = getSessionPolicy();
Expand Down Expand Up @@ -922,11 +906,6 @@ && getProtocolVersion() == OTRv.THREE)
}
}

/*
* (non-Javadoc)
*
* @see net.java.otr4j.session.ISession#startSession()
*/
public void startSession() throws OtrException {
if (this.slaveSessions.isSelected() && getProtocolVersion() == OTRv.THREE) {
this.slaveSessions.getSelected().startSession();
Expand All @@ -941,11 +920,6 @@ public void startSession() throws OtrException {
this.getAuthContext().startAuth();
}

/*
* (non-Javadoc)
*
* @see net.java.otr4j.session.ISession#endSession()
*/
public void endSession() throws OtrException {
if (this.slaveSessions.isSelected() && getProtocolVersion() == OTRv.THREE) {
this.slaveSessions.getSelected().endSession();
Expand Down Expand Up @@ -973,11 +947,6 @@ public void endSession() throws OtrException {
}
}

/*
* (non-Javadoc)
*
* @see net.java.otr4j.session.ISession#refreshSession()
*/
public void refreshSession() throws OtrException {
this.endSession();
this.startSession();
Expand Down

0 comments on commit 2daa740

Please sign in to comment.