Skip to content

Commit

Permalink
Drop ImmutableSet imports in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rickie committed Jun 14, 2022
1 parent 79d7c85 commit a0eaa51
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ void identification() {
.addSourceLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand Down Expand Up @@ -104,7 +103,6 @@ void replacementInImmutableInterface() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -123,7 +121,6 @@ void replacementInImmutableInterface() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -149,7 +146,6 @@ void replacementInModifiableInterface() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand All @@ -168,7 +164,6 @@ void replacementInModifiableInterface() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand All @@ -194,7 +189,6 @@ void replacementInImmutableAbstractClass() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -213,7 +207,6 @@ void replacementInImmutableAbstractClass() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -239,7 +232,6 @@ void replacementInModifiableAbstractClass() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand All @@ -258,7 +250,6 @@ void replacementInModifiableAbstractClass() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand All @@ -285,7 +276,6 @@ void secondaryReplacementInModifiableInterface() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand All @@ -304,7 +294,6 @@ void secondaryReplacementInModifiableInterface() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Modifiable",
Expand Down Expand Up @@ -332,7 +321,6 @@ void secondaryReplacementInImmutableAbstractClass() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -351,7 +339,6 @@ void secondaryReplacementInImmutableAbstractClass() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"@Value.Immutable",
Expand All @@ -378,7 +365,6 @@ void noReplacementInNormalClass() {
.addInputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"abstract class E {",
Expand All @@ -396,7 +382,6 @@ void noReplacementInNormalClass() {
.addOutputLines(
"A.java",
"import org.immutables.value.Value;",
"import com.google.common.collect.ImmutableSet;",
"import com.google.common.collect.ImmutableSortedSet;",
"",
"abstract class E {",
Expand Down

0 comments on commit a0eaa51

Please sign in to comment.