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

Commit 288fa92

Browse files
authored
Whitespace change
1 parent 54c0fe0 commit 288fa92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,24 +91,24 @@ default void prepareTmpFldr(FilePath tmpFldr, String runnerScript) throws IOExce
9191
FilePath zipFileLocation =
9292
new FilePath(tmpFldr, MatlabBuilderConstants.MATLAB_SCRIPT_GENERATOR);
9393
runnerScript=replaceZipPlaceholder(runnerScript, zipFileLocation.getRemote());
94-
94+
9595
// Write MATLAB scratch file in temp folder.
9696
FilePath scriptFile =
9797
new FilePath(tmpFldr, getValidMatlabFileName(tmpFldr.getBaseName()) + ".m");
9898
scriptFile.write(runnerScript, "UTF-8");
9999
}
100-
100+
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);
104104
return script;
105105
}
106-
106+
107107
default String getRunnerScript(String script, String params, String uniqueTmpFldrName) {
108108
script = script.replace("${PARAMS}", params);
109109
return script;
110110
}
111-
111+
112112
default String getValidMatlabFileName(String actualName) {
113113
return MatlabBuilderConstants.MATLAB_TEST_RUNNER_FILE_PREFIX
114114
+ actualName.replaceAll("-", "_");

0 commit comments

Comments
 (0)