Skip to content

Commit

Permalink
fix: using format.touppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Nov 17, 2023
1 parent 3d37279 commit 23312f3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package fr.insee.arc.core.service.p4controle.bo;

import fr.insee.arc.utils.format.Format;

public class RegleControle {

private ControleTypeCode typeControle; // aka id_classe
Expand Down Expand Up @@ -44,15 +46,15 @@ public void setTypeControle(ControleTypeCode typeControle) {
}

public String getRubriquePere() {
return rubriquePere==null?null:rubriquePere.toUpperCase();
return Format.toUpperCase(rubriquePere);
}

public void setRubriquePere(String rubriquePere) {
this.rubriquePere = rubriquePere;
}

public String getRubriqueFils() {
return rubriqueFils==null?null:rubriqueFils.toUpperCase();
return Format.toUpperCase(rubriqueFils);
}

public void setRubriqueFils(String rubriqueFils) {
Expand Down

0 comments on commit 23312f3

Please sign in to comment.