This commit is contained in:
AlgaLaptop
2026-01-02 20:52:44 +01:00
parent 2e0f44d28d
commit bceb70c052
31 changed files with 197 additions and 341 deletions
@@ -21,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;
@@ -41,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");
}