Skip to content

Commit

Permalink
FEAT : Ajout label PPN dans sauvegarde fichier txt
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Nov 15, 2024
1 parent 34613cf commit f36334b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void writePpnInFile(String ppn, Exemplaire exemplaire) throws StorageExce
try (FileWriter fw = new FileWriter(this.getPath().resolve(this.getFilename()).toString(), true);
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw)) {
out.println(ppn);
out.println("PPN " + ppn);
out.print("\n");
out.println(exemplaire);
out.println("\n");
Expand Down

0 comments on commit f36334b

Please sign in to comment.