5
5
6
6
public class AutoPopups {
7
7
8
- private Class78 aClass78_1327 ;
9
- private Class88 aClass88_1328 ;
8
+ private SignUpHandler signUpHandler ;
9
+ private TellFriendHandler tellFriendHandler ;
10
10
private long aLong1330 ;
11
11
private static final String aString1331 = "facebook" ;
12
12
13
13
public AutoPopups (AApplet var1 ) {
14
14
if (!var1 .param .getSiteName ().equalsIgnoreCase ("facebook" )) {
15
- this .aClass78_1327 = new Class78 (var1 );
16
- this .aClass88_1328 = new Class88 (var1 .param , var1 .textManager , var1 .imageManager );
15
+ this .signUpHandler = new SignUpHandler (var1 );
16
+ this .tellFriendHandler = new TellFriendHandler (var1 .param , var1 .textManager , var1 .imageManager );
17
17
}
18
18
19
19
this .aLong1330 = 0L ;
20
20
}
21
21
22
22
public AutoPopups (Parameters var1 , TextManager var2 , ImageManager var3 ) {
23
23
if (!var1 .getSiteName ().equalsIgnoreCase ("facebook" )) {
24
- this .aClass88_1328 = new Class88 (var1 , var2 , var3 );
24
+ this .tellFriendHandler = new TellFriendHandler (var1 , var2 , var3 );
25
25
}
26
26
}
27
27
28
28
public ColorButton getTellFriendButton () {
29
- return this .aClass88_1328 != null ? this .aClass88_1328 .method1699 () : null ;
29
+ return this .tellFriendHandler != null ? this .tellFriendHandler .method1699 () : null ;
30
30
}
31
31
32
32
public void gameFinished (boolean var1 ) {
33
33
synchronized (this ) {
34
34
if (this .method1561 ()) {
35
- if (this .aClass78_1327 != null && this .aClass78_1327 .method1599 (var1 )) {
35
+ if (this .signUpHandler != null && this .signUpHandler .method1599 (var1 )) {
36
36
this .method1562 ();
37
- } else if (this .aClass88_1328 != null && this .aClass88_1328 .method1700 ()) {
37
+ } else if (this .tellFriendHandler != null && this .tellFriendHandler .method1700 ()) {
38
38
this .method1562 ();
39
39
}
40
40
}
@@ -44,7 +44,7 @@ public void gameFinished(boolean var1) {
44
44
public void personalRecord () {
45
45
synchronized (this ) {
46
46
if (this .method1561 ()) {
47
- if (this .aClass78_1327 != null && this .aClass78_1327 .method1600 ()) {
47
+ if (this .signUpHandler != null && this .signUpHandler .method1600 ()) {
48
48
this .method1562 ();
49
49
}
50
50
}
@@ -54,7 +54,7 @@ public void personalRecord() {
54
54
public void rankingChanged (int var1 , int var2 ) {
55
55
synchronized (this ) {
56
56
if (this .method1561 ()) {
57
- if (this .aClass78_1327 != null && this .aClass78_1327 .method1601 (var1 , var2 )) {
57
+ if (this .signUpHandler != null && this .signUpHandler .method1601 (var1 , var2 )) {
58
58
this .method1562 ();
59
59
}
60
60
}
@@ -63,12 +63,12 @@ public void rankingChanged(int var1, int var2) {
63
63
64
64
public void close () {
65
65
synchronized (this ) {
66
- if (this .aClass78_1327 != null ) {
67
- this .aClass78_1327 .method1602 ();
66
+ if (this .signUpHandler != null ) {
67
+ this .signUpHandler .method1602 ();
68
68
}
69
69
70
- if (this .aClass88_1328 != null ) {
71
- this .aClass88_1328 .method1701 ();
70
+ if (this .tellFriendHandler != null ) {
71
+ this .tellFriendHandler .method1701 ();
72
72
}
73
73
}
74
74
}
0 commit comments