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

Typannotationen wieder entfernt
This commit is contained in:
Martin Plümicke 2018-11-04 11:55:45 +01:00
parent 9bf273ac1a
commit 26477b60fb

View File

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