modified: ../../test/bytecode/javFiles/Matrix.jav

Argumenttype von mul wieder entfernt.
This commit is contained in:
Martin Plümicke 2018-09-13 12:07:02 +02:00
parent acc7d95060
commit 5768783828

View File

@ -18,7 +18,7 @@ public class Matrix extends Vector<Vector<Integer>> {
}
}
mul(java.util.Vector<Vector<Integer> m) {
mul(m) {
var ret = new Matrix();
var i = 0;
while(i < size()) {