Skip to content

Commit

Permalink
FEAT ITEM-269-back-modifier-lordre-de-tri-du-fichier
Browse files Browse the repository at this point in the history
     - passage de la méthode ecrireFichierTrie() en private
  • Loading branch information
EryneKL committed Oct 16, 2024
1 parent e8bcd1b commit 4b8769a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void trierLignesDeCorrespondances() throws IOException {
* Méthode permettant d'écrire sur le fichier la liste des correspondances triées
* @param sortedLines String contenant la liste des correspondances triées
*/
public void ecrireFichierTrie(String sortedLines) {
private void ecrireFichierTrie(String sortedLines) {
try (FileWriter fw = new FileWriter(path.resolve(filename).toString());
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw)) {
Expand Down

0 comments on commit 4b8769a

Please sign in to comment.