Skip to content

Commit b23502c

Browse files
committed
Fix incorrect merge
1 parent d03571c commit b23502c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

common/src/main/java/org/embeddedt/modernfix/common/mixin/bugfix/buffer_builder_leak/BufferBuilderMixin.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ protected void finalize() throws Throwable {
4242
try {
4343
ByteBuffer buf = buffer;
4444
// can be null if a mod already tried to free the buffer
45-
<<<<<<< HEAD
46-
if(!this.closed && buf != null) {
47-
=======
48-
if(buf != null && mfix$shouldFree) {
49-
>>>>>>> propagations/1.20
45+
if(!this.closed && buf != null && mfix$shouldFree) {
5046
if(!leakReported) {
5147
leakReported = true;
5248
ModernFix.LOGGER.warn("One or more BufferBuilders have been leaked, ModernFix will attempt to correct this.");

0 commit comments

Comments
 (0)