Skip to content

Commit

Permalink
remove redundant public modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
hoijui committed Feb 15, 2016
1 parent 7366e71 commit 154ebeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/java/otr4j/session/AuthContextImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*/
class AuthContextImpl extends AuthContext {

public AuthContextImpl(Session session) {
AuthContextImpl(Session session) {
this.setSession(session);
this.reset();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/java/otr4j/session/SessionKeysImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SessionKeysImpl implements SessionKeys {
.getName());
private String keyDescription;

public SessionKeysImpl(int localKeyIndex, int remoteKeyIndex) {
SessionKeysImpl(int localKeyIndex, int remoteKeyIndex) {
if (localKeyIndex == 0)
keyDescription = "(Previous local, ";
else
Expand Down

0 comments on commit 154ebeb

Please sign in to comment.