فهرست منبع

removed unnecessary override of dispose from PhysicsTab

Adam Bowman 8 سال پیش
والد
کامیت
4f2970f78c
1فایلهای تغییر یافته به همراه2 افزوده شده و 5 حذف شده
  1. 2 5
      inspector/src/tabs/PhysicsTab.ts

+ 2 - 5
inspector/src/tabs/PhysicsTab.ts

@@ -3,7 +3,7 @@ module INSPECTOR{
     export class PhysicsTab extends PropertyTab {
 
         public viewer:BABYLON.Debug.PhysicsViewer;
-                
+        
         constructor(tabbar:TabBar, inspector:Inspector) {
             super(tabbar, 'Physics', inspector); 
         }
@@ -29,9 +29,6 @@ module INSPECTOR{
             }
             return arr;
         }
-
-        public dispose() {
-            this._detailsPanel.dispose();
-        }
+        
     }
 }