Commit 61bea4ef authored by mplushnikov's avatar mplushnikov Committed by intellij-monorepo-bot
Browse files

fixed #799

added changelog

GitOrigin-RevId: 813bf002109f10d29ecfda9d1e5950fa67e65841
parent a3c2c5af
Branches unavailable Tags unavailable
No related merge requests found
Showing with 25 additions and 2 deletions
+25 -2
<ul>
<li>0.33
<ol>
<li>Fixed #799: @SneakyThrows mistakenly swallow checked exception in lambda without "throws", thanks to
@Lekanich (Aleksandr Zhelezniak)
</li>
<li>Fixed #838: @Builder.Default and final keyword: erroneous ConstantConditions warning, thanks to
@Lekanich (Aleksandr Zhelezniak)
</li>
......
......@@ -17,6 +17,7 @@ daemon.donate.title=Lombok support plugin updated to v{0}
daemon.donate.content=<br/>\
Helpful? <b><a href="https://www.paypal.me/mplushnikov">Donate with PayPal</a></b><br/><br/>\
Fixes:<br/>\
- Fixed (<a href="https://github.com/mplushnikov/lombok-intellij-plugin/issues/799">#799</a>): @SneakyThrows mistakenly swallow checked exception in lambda without "throws", PR by @Lekanich <br/>\
- Fixed (<a href="https://github.com/mplushnikov/lombok-intellij-plugin/issues/838">#838</a>): @Builder.Default and final keyword: erroneous ConstantConditions warning, PR by @Lekanich <br/>\
- Fixed (<a href="https://github.com/mplushnikov/lombok-intellij-plugin/issues/938">#938</a>): @SneakyThrows hides compilation error: Variable might not have been not initialized, PR by @Lekanich<br/>\
<br>\
......
package de.plushnikov.sneakythrows;
import lombok.SneakyThrows;
import java.io.File;
public class Issue394 {
......
package de.plushnikov.sneakythrows;
import lombok.SneakyThrows;
import java.io.IOException;
public class Issue799 {
public static void f() {
Runnable runnable = () -> {
throw new IOException("error");
};
}
@SneakyThrows
public static void g() {
Runnable runnable = () -> {
throw new IOException("error");
};
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment