Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit b8bd3c4

Browse files
authored
Indentation
1 parent 18fe6b4 commit b8bd3c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/mathworks/ci/MatlabBuild.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ default void prepareTmpFldr(FilePath tmpFldr, String runnerScript) throws IOExce
9292
new FilePath(tmpFldr, MatlabBuilderConstants.MATLAB_SCRIPT_GENERATOR);
9393
runnerScript=replaceZipPlaceholder(runnerScript, zipFileLocation.getRemote());
9494

95-
// Write MATLAB scratch file in temp folder.
95+
// Write MATLAB scratch file in temp folder.
9696
FilePath scriptFile =
9797
new FilePath(tmpFldr, getValidMatlabFileName(tmpFldr.getBaseName()) + ".m");
9898
scriptFile.write(runnerScript, "UTF-8");
@@ -101,7 +101,7 @@ default void prepareTmpFldr(FilePath tmpFldr, String runnerScript) throws IOExce
101101
//This method replaces the placeholder with genscript's zip file location URL in temp folder
102102
default String replaceZipPlaceholder(String script, String url) {
103103
script = script.replace("${ZIP_FILE}", url);
104-
return script;
104+
return script;
105105
}
106106

107107
default String getRunnerScript(String script, String params, String uniqueTmpFldrName) {

0 commit comments

Comments
 (0)