X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Fcomponents%2FMux.java;h=6ac32c6aa1d9a8b666ced232956c3173ccfed716;hb=f2cd90fa2b844507bc9697d3af1f3e18aac80b37;hp=6003723a1660f1dcd250ff02bd03fbcdc882c783;hpb=2174689b35611c63b60f61c1e076ebb689977a6a;p=Mograsim.git diff --git a/era.mi/src/era/mi/logic/components/Mux.java b/era.mi/src/era/mi/logic/components/Mux.java index 6003723a..6ac32c6a 100644 --- a/era.mi/src/era/mi/logic/components/Mux.java +++ b/era.mi/src/era/mi/logic/components/Mux.java @@ -88,6 +88,6 @@ public class Mux extends BasicComponent @Override public List getAllOutputs() { - return Collections.unmodifiableList(Arrays.asList(outI.owner)); + return List.of(outI.owner); } }