File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
src/com/qozix/tileview/hotspots Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -182,3 +182,6 @@ pip-log.txt
182
182
/AndroidManifest.xml
183
183
/proguard-project.txt
184
184
/project.properties
185
+
186
+ # Project Specific
187
+ /build.xml
Original file line number Diff line number Diff line change 1
1
package com .qozix .tileview .hotspots ;
2
2
3
- import java .util .ArrayList ;
4
- import java .util .LinkedList ;
3
+ import android .graphics .Point ;
5
4
6
5
import com .qozix .tileview .detail .DetailLevelEventListener ;
7
6
import com .qozix .tileview .detail .DetailManager ;
8
7
9
- import android . graphics . Point ;
8
+ import java . util . ArrayList ;
10
9
11
10
public class HotSpotManager implements DetailLevelEventListener {
12
11
@@ -54,10 +53,6 @@ private HotSpot getMatch( Point point ){
54
53
}
55
54
56
55
public void processHit ( Point point ){
57
- // fast-fail if no listeners
58
- if (listeners .isEmpty ()){
59
- return ;
60
- }
61
56
// is there a match?
62
57
HotSpot hotSpot = getMatch ( point );
63
58
if ( hotSpot != null ){
You can’t perform that action at this time.
0 commit comments