Remove bogus constructor

This commit is contained in:
Jack Lloyd
2020-12-09 15:31:29 -05:00
parent 4b4b7e3df6
commit f4f2a98985

View File

@@ -72,11 +72,6 @@ public class SessionState {
this.handle = handle;
}
// Remove this:
SessionState(SessionState copy) {
this.handle = copy.handle;
}
byte[] getAliceBaseKey() {
return Native.SessionState_GetAliceBaseKey(this.handle);
}