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

Commit 94dd63b

Browse files
author
Nikhil Bhoski
committed
Static constants made private.
1 parent 2c88f5a commit 94dd63b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ private String getInputArguments() {
255255
*/
256256
public static class PdfArtifact extends AbstractArtifactImpl {
257257

258-
static final String PDF_REPORT_PATH = "PDFReportPath";
258+
private static final String PDF_REPORT_PATH = "PDFReportPath";
259259

260260
@DataBoundConstructor
261261
public PdfArtifact(String pdfReportFilePath) {
@@ -270,7 +270,7 @@ public void addFilePathArgTo(Map<String, String> inputArgs) {
270270

271271
public static class TapArtifact extends AbstractArtifactImpl {
272272

273-
static final String TAP_RESULTS_PATH = "TAPResultsPath";
273+
private static final String TAP_RESULTS_PATH = "TAPResultsPath";
274274

275275
@DataBoundConstructor
276276
public TapArtifact(String tapReportFilePath) {
@@ -285,7 +285,7 @@ public void addFilePathArgTo(Map<String, String> inputArgs) {
285285

286286
public static class JunitArtifact extends AbstractArtifactImpl {
287287

288-
static final String JUNIT_RESULTS_PATH = "JUnitResultsPath";
288+
private static final String JUNIT_RESULTS_PATH = "JUnitResultsPath";
289289

290290
@DataBoundConstructor
291291
public JunitArtifact(String junitReportFilePath) {
@@ -300,7 +300,7 @@ public void addFilePathArgTo(Map<String, String> inputArgs) {
300300

301301
public static class CoberturaArtifact extends AbstractArtifactImpl {
302302

303-
static final String COBERTURA_CODE_COVERAGE_PATH = "CoberturaCodeCoveragePath";
303+
private static final String COBERTURA_CODE_COVERAGE_PATH = "CoberturaCodeCoveragePath";
304304

305305
@DataBoundConstructor
306306
public CoberturaArtifact(String coberturaReportFilePath) {
@@ -315,7 +315,7 @@ public void addFilePathArgTo(Map<String, String> inputArgs) {
315315

316316
public static class StmResultsArtifact extends AbstractArtifactImpl {
317317

318-
static final String STM_RESULTS_PATH = "SimulinkTestResultsPath";
318+
private static final String STM_RESULTS_PATH = "SimulinkTestResultsPath";
319319

320320
@DataBoundConstructor
321321
public StmResultsArtifact(String stmResultsFilePath) {
@@ -330,7 +330,7 @@ public void addFilePathArgTo(Map<String, String> inputArgs) {
330330

331331
public static class ModelCovArtifact extends AbstractArtifactImpl {
332332

333-
static final String COBERTURA_MODEL_COVERAGE_PATH = "CoberturaModelCoveragePath";
333+
private static final String COBERTURA_MODEL_COVERAGE_PATH = "CoberturaModelCoveragePath";
334334

335335
@DataBoundConstructor
336336
public ModelCovArtifact(String modelCoverageFilePath) {

0 commit comments

Comments
 (0)