Skip to content

Commit 8c98014

Browse files
author
TheSnoozer
committed
rename getGenerateGitPropertiesFilename to just getGenerateGitPropertiesFile
1 parent 614975e commit 8c98014

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/pl/project13/core/GitCommitIdPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ default Map<String, String> getSystemEnv() {
270270
/**
271271
* @return The optional properties file where properties should be dumped into
272272
*/
273-
File getGenerateGitPropertiesFilename();
273+
File getGenerateGitPropertiesFile();
274274

275275
/**
276276
* @return The Charset in which format the properties should be dumped (e.g. 'UTF-8')
@@ -306,7 +306,7 @@ public static void runPlugin(@Nonnull Callback cb, @Nullable Properties contextP
306306
cb.getProjectName()
307307
).maybeGeneratePropertiesFile(
308308
properties,
309-
cb.getGenerateGitPropertiesFilename(),
309+
cb.getGenerateGitPropertiesFile(),
310310
cb.getPropertiesSourceCharset(),
311311
cb.shouldPropertiesEscapeUnicode()
312312
);

src/test/java/pl/project13/core/GitCommitIdTestCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ public File getProjectBaseDir() {
327327
}
328328

329329
@Override
330-
public File getGenerateGitPropertiesFilename() {
330+
public File getGenerateGitPropertiesFile() {
331331
return generateGitPropertiesFilename;
332332
}
333333

0 commit comments

Comments
 (0)