kwin commented on code in PR #153:
URL: https://github.com/apache/maven-scm/pull/153#discussion_r922819148
##########
maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/main/java/org/apache/maven/scm/provider/git/gitexe/command/checkin/GitCheckInCommand.java:
##########
@@ -57,6 +58,14 @@
extends AbstractCheckInCommand
implements GitCommand
{
+ private final Map<String, String> environmentVariables;
+
+ public GitCheckInCommand( Map<String, String> environmentVariables )
+ {
+ super();
+ this.environmentVariables = environmentVariables;
+ }
Review Comment:
I didn't consider this API, the only usage is from within
`GitExeScmProvider` and that one only leverages the one with map.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]