未使用の変数を削除

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@5514 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2009-12-16 14:31:10 +00:00
parent c37d4dd2db
commit 6bd2c190e6

View File

@ -113,8 +113,6 @@ TreeStyleTabBrowserTabbarDNDObserver.prototype = {
!sv.getTreePref('autoExpand.enabled')) !sv.getTreePref('autoExpand.enabled'))
return; return;
var now = (new Date()).getTime();
window.clearTimeout(this.mAutoExpandTimer); window.clearTimeout(this.mAutoExpandTimer);
if (aEvent.target == aDragSession.sourceNode) return; if (aEvent.target == aDragSession.sourceNode) return;
this.mAutoExpandTimer = window.setTimeout( this.mAutoExpandTimer = window.setTimeout(
@ -137,14 +135,10 @@ TreeStyleTabBrowserTabbarDNDObserver.prototype = {
); );
tab = null; tab = null;
now = null;
}, },
onDragExit : function(aEvent, aDragSession) onDragExit : function(aEvent, aDragSession)
{ {
var sv = this.mOwner;
var now = (new Date()).getTime();
window.clearTimeout(this.mAutoExpandTimer); window.clearTimeout(this.mAutoExpandTimer);
this.mAutoExpandTimer = null; this.mAutoExpandTimer = null;
}, },