Finalisation des interfaces pour les codes + test avec une image

This commit is contained in:
2025-12-27 14:19:04 +01:00
parent 9d925f6782
commit 2dbef96484
19 changed files with 75 additions and 31 deletions
@@ -1,5 +1,4 @@
package fr.iutfbleau.sae.util;
import java.io.IOException;
import java.io.InputStream;
@@ -22,7 +21,7 @@ import java.io.InputStream;
* @version 1.0
* @since 2025-12-13
*/
public class BitInputStream {
public class BitinputStream {
/** Flux d'entrée sous-jacent */
private final InputStream fluxEntree;
@@ -42,7 +41,7 @@ public class BitInputStream {
* @param fluxEntree flux d'entrée à décorer
* @throws IllegalArgumentException si le flux est nul
*/
public BitInputStream(InputStream fluxEntree) {
public BitinputStream(InputStream fluxEntree) {
if (fluxEntree == null) {
throw new IllegalArgumentException("Le flux d'entrée ne peut pas être nul");
}