Skip to content

Commit e389be1

Browse files
committed
chore: rename getScalaOptions into getScalacOptions
1 parent f8da1dc commit e389be1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/scala_maven/ScalaCompilerSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ private int incrementalCompile(
358358
}
359359

360360
classpathElements.remove(outputDir);
361-
List<String> scalacOptions = getScalaOptions();
361+
List<String> scalacOptions = getScalacOptions();
362362
List<String> javacOptions = getJavacOptions();
363363

364364
try {

src/main/java/scala_maven/ScalaMojoSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ private String getToolClasspath() throws Exception {
584584
return FileUtils.toMultiPath(classpath);
585585
}
586586

587-
protected List<String> getScalaOptions() throws Exception {
587+
protected List<String> getScalacOptions() throws Exception {
588588
List<String> options = new ArrayList<>();
589589
if (args != null) Collections.addAll(options, args);
590590
if (StringUtils.isNotEmpty(addScalacArgs)) {

0 commit comments

Comments
 (0)