Browse Source

removed unnecessary override of dispose from PhysicsTab

Adam Bowman 8 years ago
parent
commit
4f2970f78c
1 changed files with 2 additions and 5 deletions
  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();
-        }
+        
     }
 }