I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 6a69cef2 authored by zzz's avatar zzz
Browse files

Ratchet: Minor cleanup

parent c1fef302
No related branches found
No related tags found
No related merge requests found
...@@ -1271,9 +1271,9 @@ public final class ECIESAEADEngine { ...@@ -1271,9 +1271,9 @@ public final class ECIESAEADEngine {
* @since 0.9.47 * @since 0.9.47
*/ */
private void setResponseTimer(PublicKey from, List<GarlicClove> cloveSet, RatchetSKM skm) { private void setResponseTimer(PublicKey from, List<GarlicClove> cloveSet, RatchetSKM skm) {
Destination us = skm.getDestination();
Destination d = skm.getDestination(from); Destination d = skm.getDestination(from);
if (d != null) { if (d != null) {
Destination us = skm.getDestination();
ACKTimer ack = new ACKTimer(_context, us, d); ACKTimer ack = new ACKTimer(_context, us, d);
if (skm.registerTimer(from, null, ack)) { if (skm.registerTimer(from, null, ack)) {
ack.schedule(1000); ack.schedule(1000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment