Skip to content

Commit 924e344

Browse files
committed
Fix parameter name
1 parent d1f6150 commit 924e344

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sbm-support-rewrite/src/test/java/org/springframework/sbm/test/util/DummyResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public DummyResource(String path, String content) {
4242
this(Path.of(path), content);
4343
}
4444

45-
public DummyResource(Path baseDir, String s, String pom) {
46-
this(baseDir.resolve(s).toAbsolutePath().normalize(), pom);
45+
public DummyResource(Path baseDir, String sourcePath, String pom) {
46+
this(baseDir.resolve(sourcePath).toAbsolutePath().normalize(), pom);
4747
}
4848

4949
@Override

0 commit comments

Comments
 (0)