From 2ac21a5a5a15bea46d6df7fed8af23169e2d0f77 Mon Sep 17 00:00:00 2001 From: Micah Mood Date: Mon, 28 Oct 2024 13:03:45 -0400 Subject: [PATCH] ran format plugin --- src/main/java/com/jcraft/jsch/jzlib/Deflate.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/jcraft/jsch/jzlib/Deflate.java b/src/main/java/com/jcraft/jsch/jzlib/Deflate.java index 7b1b744c..193d19a5 100644 --- a/src/main/java/com/jcraft/jsch/jzlib/Deflate.java +++ b/src/main/java/com/jcraft/jsch/jzlib/Deflate.java @@ -1309,8 +1309,9 @@ int longest_match(int cur_match) { && window[++scan] == window[++match] && window[++scan] == window[++match] && scan < strend); - //len here is set to MAX_MATCH minus (strend minus scan, i.e. the distance between scan and strend) - //to ensure that best_len is set to the best possible length to lookahead + // len here is set to MAX_MATCH minus (strend minus scan, i.e. the distance between scan and + // strend) + // to ensure that best_len is set to the best possible length to lookahead len = MAX_MATCH - (strend - scan); scan = strend - MAX_MATCH;