Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Capitalize private static final String
Browse files Browse the repository at this point in the history
  • Loading branch information
mwithi authored Dec 15, 2023
1 parent 285e4e5 commit b398066
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/org/isf/lab/rest/LaboratoryController.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ public class LaboratoryController {
// TODO: to centralize
protected static final String DEFAULT_PAGE_SIZE = "80";

private static String draft = LaboratoryStatus.draft.toString();
private static final String DRAFT = LaboratoryStatus.draft.toString();

private static String open = LaboratoryStatus.open.toString();
private static final String OPEN = LaboratoryStatus.open.toString();

private static String deleted = LaboratoryStatus.deleted.toString();
private static final String DELETED = LaboratoryStatus.deleted.toString();

private static String invalid = LaboratoryStatus.invalid.toString();
private static final String INVALID = LaboratoryStatus.invalid.toString();

private static String done = LaboratoryStatus.done.toString();
private static final String DONE = LaboratoryStatus.done.toString();

@Autowired
protected LabManager laboratoryManager;
Expand Down

0 comments on commit b398066

Please sign in to comment.