チェンジセット 2139
- コミット日時:
- 2009/01/14 20:54:00 (1 年前)
- ファイル:
-
- air/TLife/bin/TLife.swf (更新) (変更前)
- air/TLife/src/uwi/db/DBOpenThread.as (更新) (1 diff)
- air/TLife/src/uwi/db/DBSelectThread.as (更新) (1 diff)
- air/TLife/src/uwi/db/DBTransactionThread.as (更新) (2 diffs)
- air/TLife/src/uwi/db/SimpleTransactionThread.as (更新) (2 diffs)
- air/TLife/src/uwi/search/IncrementalSearchThread.as (更新) (1 diff)
- air/TLife/src/uwi/thread/ContextMenuItemEventThread.as (更新) (3 diffs)
- air/TLife/src/uwi/thread/DataGridEventThread.as (更新) (1 diff)
- air/TLife/src/uwi/thread/LinkResolveThread.as (更新) (1 diff)
- air/TLife/src/uwi/thread/StatusInsertThread.as (更新) (2 diffs)
- air/TLife/src/uwi/thread/TimelineThread.as (更新) (2 diffs)
- air/TLife/src/uwi/thread/TinyURLDecodeThread.as (更新) (1 diff)
- air/TLife/src/uwi/thread/TinyURLEncodeThread.as (更新) (2 diffs)
- air/TLife/src/uwi/twitter/TwitterFollowingGetThread.as (更新) (1 diff)
- air/TLife/src/uwi/twitter/TwitterLoginThread.as (更新) (1 diff)
- air/TLife/src/uwi/twitter/TwitterPostThread.as (更新) (1 diff)
- air/TLife/src/uwi/twitter/TwitterReloadThread.as (更新) (2 diffs)
- air/TLife/src/uwi/ui/MultipleTabBarEventThread.as (更新) (1 diff)
- air/TLife/src/uwi/ui/TabPropertyDataGridEventThread.as (更新) (1 diff)
- air/TLife/src/uwi/ui/TabPropertyTabListEventThread.as (更新) (1 diff)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
air/TLife/src/uwi/db/DBOpenThread.as
r1885 r2139 17 17 public function DBOpenThread(path : File) { 18 18 this.path = path; 19 } 20 21 protected override function finalize() : void 22 { 23 path = null; 24 conn = null; 19 25 } 20 26 air/TLife/src/uwi/db/DBSelectThread.as
r1885 r2139 24 24 } 25 25 26 protected override function finalize() : void 27 { 28 stmt = null; 29 result = null; 30 } 31 26 32 protected override function run() : void 27 33 { air/TLife/src/uwi/db/DBTransactionThread.as
r1885 r2139 15 15 } 16 16 17 protected override function finalize() : void 18 { 19 conn = null; 20 } 21 17 22 protected override function run() : void 18 23 { … … 28 33 29 34 protected function execute() : void { } 35 30 36 } 31 37 air/TLife/src/uwi/db/SimpleTransactionThread.as
r2137 r2139 22 22 } 23 23 24 protected override function finalize() : void 25 { 26 basetext = null; 27 args = null; 28 } 29 24 30 protected override function execute() : void 25 31 { … … 39 45 } 40 46 } 47 41 48 } 42 49 air/TLife/src/uwi/search/IncrementalSearchThread.as
r1957 r2139 31 31 this.timeoutmanager = new Timer(timeout); 32 32 } 33 34 protected override function finalize() : void 35 { 36 dobj = null; 37 query = null; 38 timeoutmanager = null; 39 } 33 40 34 41 protected override function run() : void air/TLife/src/uwi/thread/ContextMenuItemEventThread.as
r2137 r2139 26 26 * ... 27 27 * @author Uwi 28 * TODO singletonにしたい29 28 */ 30 29 public class ContextMenuItemEventThread extends Thread … … 83 82 tabbar.contextMenu = tbcm; 84 83 } 84 85 protected override function finalize() : void 86 { 87 item_reply = null; 88 item_dm = null; 89 item_fav = null; 90 item_favdel = null; 91 item_follow = null; 92 item_remove = null; 93 item_personalTL = null; 94 item_pairTL = null; 95 item_duptab = null; 96 item_deltab = null; 97 item_rentab = null; 98 } 99 85 100 86 101 protected override function run() : void … … 328 343 PostEventThread.changeCharLeft(); 329 344 } 330 331 345 } 332 346 air/TLife/src/uwi/thread/DataGridEventThread.as
r2137 r2139 43 43 tlbgcct.start(); 44 44 } 45 46 protected override function finalize() : void 47 { 48 tlbgcct = null; 49 topobj = null; 50 } 45 51 46 52 protected override function run() : void air/TLife/src/uwi/thread/LinkResolveThread.as
r1968 r2139 22 22 { 23 23 this.src = src; 24 } 25 26 protected override function finalize() : void 27 { 28 src = null; 29 dst = null; 30 pe = null; 24 31 } 25 32 air/TLife/src/uwi/thread/StatusInsertThread.as
r2135 r2139 31 31 return x.postedtime.getTime() - y.postedtime.getTime(); 32 32 }); 33 } 34 35 protected override function finalize() : void 36 { 37 statuses = null; 33 38 } 34 39 … … 79 84 trace("INSERTEND"); 80 85 } 81 82 86 } 83 87 air/TLife/src/uwi/thread/TimelineThread.as
r2137 r2139 28 28 this.prefetch = prefetch; 29 29 this.query = query; 30 } 31 32 protected override function finalize() : void 33 { 34 query = null; 35 dbst = null; 30 36 } 31 37 … … 131 137 } 132 138 } 133 134 139 } 135 140 air/TLife/src/uwi/thread/TinyURLDecodeThread.as
r1873 r2139 16 16 public function TinyURLDecodeThread(url : String) { 17 17 this.url = url; 18 } 19 20 protected override function finalize() : void 21 { 22 url = null; 23 decoded = null; 18 24 } 19 25 air/TLife/src/uwi/thread/TinyURLEncodeThread.as
r1873 r2139 16 16 public function TinyURLEncodeThread(url : String) { 17 17 this.url = url; 18 } 19 20 protected override function finalize() : void 21 { 22 url = null; 23 encoded = null; 24 ult = null; 18 25 } 19 26 … … 39 46 this.encoded = ult.loader.data; 40 47 } 41 42 48 } 43 49 air/TLife/src/uwi/twitter/TwitterFollowingGetThread.as
r1957 r2139 27 27 } 28 28 29 protected override function finalize() : void 30 { 31 ults = null; 32 ud = null; 33 } 34 29 35 private function getCompleted() : void 30 36 { air/TLife/src/uwi/twitter/TwitterLoginThread.as
r1957 r2139 19 19 this.username = username; 20 20 this.password = password; 21 } 22 23 protected override function finalize() : void 24 { 25 username = null; 26 password = null; 21 27 } 22 28 air/TLife/src/uwi/twitter/TwitterPostThread.as
r2134 r2139 20 20 this.eventname = eventname; 21 21 } 22 23 protected override function finalize() : void 24 { 25 eventname = null; 26 } 22 27 23 28 protected override function run() : void air/TLife/src/uwi/twitter/TwitterReloadThread.as
r2137 r2139 39 39 this.pageend = pageend; 40 40 this.posterid = posterid; 41 } 42 43 protected override function finalize() : void 44 { 45 ults = null; 46 pe = null; 47 mp = null; 48 posterid = null; 49 pelrt = null; 50 statuses = null; 41 51 } 42 52 … … 126 136 sit.join(); 127 137 } 128 129 138 } 130 139 air/TLife/src/uwi/ui/MultipleTabBarEventThread.as
r2109 r2139 21 21 this.mtb = mtb; 22 22 } 23 24 protected override function finalize() : void 25 { 26 mtb = null; 27 } 23 28 24 29 protected override function run() : void air/TLife/src/uwi/ui/TabPropertyDataGridEventThread.as
r2124 r2139 21 21 } 22 22 23 protected override function finalize() : void 24 { 25 dg = null; 26 tp = null; 27 } 28 23 29 protected override function run() : void 24 30 { air/TLife/src/uwi/ui/TabPropertyTabListEventThread.as
r2124 r2139 24 24 this.tp = tp; 25 25 } 26 27 protected override function finalize() : void 28 { 29 tablist = null; 30 tp = null; 31 } 26 32 27 33 protected override function run() : void

