Skip to content
Snippets Groups Projects
Verified Commit d0de4241 authored by Réthelyi Bálint's avatar Réthelyi Bálint :no_mouth:
Browse files

(Object[])

parent 040cbc92
No related branches found
No related tags found
No related merge requests found
Pipeline #7582 passed
Pipeline: tester

#7583

    ......@@ -42,7 +42,7 @@ public class Helper {
    * @return a feltöltött tároló
    */
    public static List<Material> inventoryFromArgs(String[] args) {
    MagicLogger.callStatic(Helper.class, args);
    MagicLogger.callStatic(Helper.class, (Object[]) args);
    List<Material> inv = new ArrayList<>();
    for (int i = 0; i < args.length; i+=2) {
    try {
    ......
    ......@@ -173,7 +173,7 @@ public class Portal extends Visitable {
    */
    @Override
    public boolean command(String[] args) {
    MagicLogger.call(this, args);
    MagicLogger.call(this, (Object[]) args);
    var cmd = args[0];
    args = Arrays.copyOfRange(args, 1, args.length);
    switch (cmd) { // későbbi bővíthetőség miatt switch és nem if
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment