Skip to content

Commit 5b3083f

Browse files
committed
chore(unit-tests): add missing return statement
1 parent 8277030 commit 5b3083f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powertools-serialization/src/main/java/software/amazon/lambda/powertools/utilities/jmespath/Base64GZipFunction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static String decompress(byte[] compressed) {
5454
return "";
5555
}
5656
if (!isCompressed(compressed)) {
57-
new String(compressed, UTF_8);
57+
return new String(compressed, UTF_8);
5858
}
5959
try {
6060
StringBuilder out = new StringBuilder();

0 commit comments

Comments
 (0)