From 19de8fbe4743afc58df39555602c67e46fc2e016 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 20 Jan 2015 22:24:40 +0100 Subject: brainfarted ‘singleton’ where I meant ‘singular’ in all the test files. Whoops! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../after-delombok/BuilderSingletonMaps.java | 173 --------------------- 1 file changed, 173 deletions(-) delete mode 100644 test/transform/resource/after-delombok/BuilderSingletonMaps.java (limited to 'test/transform/resource/after-delombok/BuilderSingletonMaps.java') diff --git a/test/transform/resource/after-delombok/BuilderSingletonMaps.java b/test/transform/resource/after-delombok/BuilderSingletonMaps.java deleted file mode 100644 index a6474975..00000000 --- a/test/transform/resource/after-delombok/BuilderSingletonMaps.java +++ /dev/null @@ -1,173 +0,0 @@ -import java.util.Map; -import java.util.SortedMap; -class BuilderSingletonMaps { - private Map women; - private SortedMap men; - @SuppressWarnings("all") - private Map rawMap; - private Map stringMap; - @java.lang.SuppressWarnings("all") - BuilderSingletonMaps(final Map women, final SortedMap men, final Map rawMap, final Map stringMap) { - this.women = women; - this.men = men; - this.rawMap = rawMap; - this.stringMap = stringMap; - } - @java.lang.SuppressWarnings("all") - public static class BuilderSingletonMapsBuilder { - private java.util.ArrayList women$key; - private java.util.ArrayList women$value; - private java.util.ArrayList men$key; - private java.util.ArrayList men$value; - private java.util.ArrayList rawMap$key; - private java.util.ArrayList rawMap$value; - private java.util.ArrayList stringMap$key; - private java.util.ArrayList stringMap$value; - @java.lang.SuppressWarnings("all") - BuilderSingletonMapsBuilder() { - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder woman(final K womanKey, final V womanValue) { - if (this.women$key == null) { - this.women$key = new java.util.ArrayList(); - this.women$value = new java.util.ArrayList(); - } - this.women$key.add(womanKey); - this.women$value.add(womanValue); - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder women(final java.util.Map women) { - if (this.women$key == null) { - this.women$key = new java.util.ArrayList(); - this.women$value = new java.util.ArrayList(); - } - for (final java.util.Map.Entry $lombokEntry : women.entrySet()) { - this.women$key.add($lombokEntry.getKey()); - this.women$value.add($lombokEntry.getValue()); - } - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder man(final K manKey, final Number manValue) { - if (this.men$key == null) { - this.men$key = new java.util.ArrayList(); - this.men$value = new java.util.ArrayList(); - } - this.men$key.add(manKey); - this.men$value.add(manValue); - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder men(final java.util.Map men) { - if (this.men$key == null) { - this.men$key = new java.util.ArrayList(); - this.men$value = new java.util.ArrayList(); - } - for (final java.util.Map.Entry $lombokEntry : men.entrySet()) { - this.men$key.add($lombokEntry.getKey()); - this.men$value.add($lombokEntry.getValue()); - } - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder rawMap(final java.lang.Object rawMapKey, final java.lang.Object rawMapValue) { - if (this.rawMap$key == null) { - this.rawMap$key = new java.util.ArrayList(); - this.rawMap$value = new java.util.ArrayList(); - } - this.rawMap$key.add(rawMapKey); - this.rawMap$value.add(rawMapValue); - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder rawMap(final java.util.Map rawMap) { - if (this.rawMap$key == null) { - this.rawMap$key = new java.util.ArrayList(); - this.rawMap$value = new java.util.ArrayList(); - } - for (final java.util.Map.Entry $lombokEntry : rawMap.entrySet()) { - this.rawMap$key.add($lombokEntry.getKey()); - this.rawMap$value.add($lombokEntry.getValue()); - } - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder stringMap(final String stringMapKey, final V stringMapValue) { - if (this.stringMap$key == null) { - this.stringMap$key = new java.util.ArrayList(); - this.stringMap$value = new java.util.ArrayList(); - } - this.stringMap$key.add(stringMapKey); - this.stringMap$value.add(stringMapValue); - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMapsBuilder stringMap(final java.util.Map stringMap) { - if (this.stringMap$key == null) { - this.stringMap$key = new java.util.ArrayList(); - this.stringMap$value = new java.util.ArrayList(); - } - for (final java.util.Map.Entry $lombokEntry : stringMap.entrySet()) { - this.stringMap$key.add($lombokEntry.getKey()); - this.stringMap$value.add($lombokEntry.getValue()); - } - return this; - } - @java.lang.SuppressWarnings("all") - public BuilderSingletonMaps build() { - java.util.Map women; - switch (this.women$key == null ? 0 : this.women$key.size()) { - case 0: - women = java.util.Collections.emptyMap(); - break; - case 1: - women = java.util.Collections.singletonMap(this.women$key.get(0), this.women$value.get(0)); - break; - default: - women = new java.util.LinkedHashMap(this.women$key.size() < 1073741824 ? 1 + this.women$key.size() + (this.women$key.size() - 3) / 3 : java.lang.Integer.MAX_VALUE); - for (int $i = 0; $i < this.women$key.size(); $i++) women.put(this.women$key.get($i), this.women$value.get($i)); - women = java.util.Collections.unmodifiableMap(women); - } - java.util.SortedMap men = new java.util.TreeMap(); - if (this.men$key != null) for (int $i = 0; $i < (this.men$key == null ? 0 : this.men$key.size()); $i++) men.put(this.men$key.get($i), this.men$value.get($i)); - men = java.util.Collections.unmodifiableSortedMap(men); - java.util.Map rawMap; - switch (this.rawMap$key == null ? 0 : this.rawMap$key.size()) { - case 0: - rawMap = java.util.Collections.emptyMap(); - break; - case 1: - rawMap = java.util.Collections.singletonMap(this.rawMap$key.get(0), this.rawMap$value.get(0)); - break; - default: - rawMap = new java.util.LinkedHashMap(this.rawMap$key.size() < 1073741824 ? 1 + this.rawMap$key.size() + (this.rawMap$key.size() - 3) / 3 : java.lang.Integer.MAX_VALUE); - for (int $i = 0; $i < this.rawMap$key.size(); $i++) rawMap.put(this.rawMap$key.get($i), this.rawMap$value.get($i)); - rawMap = java.util.Collections.unmodifiableMap(rawMap); - } - java.util.Map stringMap; - switch (this.stringMap$key == null ? 0 : this.stringMap$key.size()) { - case 0: - stringMap = java.util.Collections.emptyMap(); - break; - case 1: - stringMap = java.util.Collections.singletonMap(this.stringMap$key.get(0), this.stringMap$value.get(0)); - break; - default: - stringMap = new java.util.LinkedHashMap(this.stringMap$key.size() < 1073741824 ? 1 + this.stringMap$key.size() + (this.stringMap$key.size() - 3) / 3 : java.lang.Integer.MAX_VALUE); - for (int $i = 0; $i < this.stringMap$key.size(); $i++) stringMap.put(this.stringMap$key.get($i), this.stringMap$value.get($i)); - stringMap = java.util.Collections.unmodifiableMap(stringMap); - } - return new BuilderSingletonMaps(women, men, rawMap, stringMap); - } - @java.lang.Override - @java.lang.SuppressWarnings("all") - public java.lang.String toString() { - return "BuilderSingletonMaps.BuilderSingletonMapsBuilder(women$key=" + this.women$key + ", women$value=" + this.women$value + ", men$key=" + this.men$key + ", men$value=" + this.men$value + ", rawMap$key=" + this.rawMap$key + ", rawMap$value=" + this.rawMap$value + ", stringMap$key=" + this.stringMap$key + ", stringMap$value=" + this.stringMap$value + ")"; - } - } - @java.lang.SuppressWarnings("all") - public static BuilderSingletonMapsBuilder builder() { - return new BuilderSingletonMapsBuilder(); - } -} -- cgit