From a74db7c10c61c7a18e8fed774cac1e0cde534009 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 4 Jun 2018 23:36:06 +0200 Subject: Make `extraPrivate` opt-in instead of opt-out. Fixes #1708 --- test/transform/resource/after-delombok/ValuePlain.java | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'test/transform/resource/after-delombok/ValuePlain.java') diff --git a/test/transform/resource/after-delombok/ValuePlain.java b/test/transform/resource/after-delombok/ValuePlain.java index 0cbd8621..cf2c1142 100644 --- a/test/transform/resource/after-delombok/ValuePlain.java +++ b/test/transform/resource/after-delombok/ValuePlain.java @@ -7,11 +7,6 @@ final class Value1 { this.name = name; } @java.lang.SuppressWarnings("all") - private Value1() { - this.x = 0; - this.name = null; - } - @java.lang.SuppressWarnings("all") public int getX() { return this.x; } @@ -56,11 +51,6 @@ class Value2 { this.name = name; } @java.lang.SuppressWarnings("all") - private Value2() { - this.x = 0; - this.name = null; - } - @java.lang.SuppressWarnings("all") public int getX() { return this.x; } @@ -110,10 +100,6 @@ final class Value3 { this.y = y; } @java.lang.SuppressWarnings("all") - private Value3() { - this.y = 0; - } - @java.lang.SuppressWarnings("all") public int getX() { return this.x; } -- cgit