Skip to content

Commit e5cfc68

Browse files
author
Vincent Potucek
committed
ReplaceObsoletes
1 parent 4b8f18b commit e5cfc68

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

plugin-maven/src/test/java/com/diffplug/spotless/maven/java/ReplaceObsoletesStepTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import org.junit.jupiter.api.Test;
2020

2121
class ReplaceObsoletesStepTest extends MavenIntegrationHarness {
22-
2322
@Test
2423
void testSortPomCfg() throws Exception {
2524
writePomWithJavaSteps("<replaceObsoletes/>");
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class Test {
2+
public int int1;
3+
public long long1;
4+
public float float1;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class Test {
2+
public int int1 = 0;
3+
public long long1 = 0;
4+
public float float1 = 0;
5+
}

0 commit comments

Comments
 (0)