소스 검색

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();
-        }
+        
     }
 }