1
0
Преглед на файлове

Fix incomplete refactoring in 7dfd950.

Herbert Vojčík преди 8 години
родител
ревизия
3a14f2b950
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      support/boot.js

+ 1 - 1
support/boot.js

@@ -432,7 +432,7 @@ define(['require', './brikz.umd', './compatibility'], function (require, Brikz)
             if (typeof superclass == 'undefined' || superclass && superclass.isNil) {
             if (typeof superclass == 'undefined' || superclass && superclass.isNil) {
                 console.warn('Compiling ' + className + ' as a subclass of `nil`. A dependency might be missing.');
                 console.warn('Compiling ' + className + ' as a subclass of `nil`. A dependency might be missing.');
             }
             }
-            return rawAddClass(pkgName, className, superclass, iVarNames, false, null);
+            return rawAddClass(pkgName, className, superclass, iVarNames, null, false);
         };
         };
 
 
         function rawAddClass(pkgName, className, superclass, iVarNames, fn, detachedRoot) {
         function rawAddClass(pkgName, className, superclass, iVarNames, fn, detachedRoot) {