Skip to content

Commit

Permalink
remove the TestFlight checkpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Sep 2, 2013
1 parent cd72d09 commit e78ee65
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion irccloud-android.iml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
<orderEntry type="library" exported="" name="ComAndroidSupportAppcompatV71800.aar" level="project" />
<orderEntry type="library" exported="" name="ComGoogleAndroidGmsPlayServices3136.aar" level="project" />
<orderEntry type="module" module-name="android-websockets" exported="" />
<orderEntry type="library" exported="" name="IrccloudAndroidAndroidWebsocketsUnspecified.aar" level="project" />
</component>
</module>

1 change: 0 additions & 1 deletion src/com/irccloud/android/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ public void onPause() {

@Override
public void onResume() {
TestFlight.passCheckpoint("MainActivity");
super.onResume();
conn = NetworkConnection.getInstance();
if(conn.ready) {
Expand Down
1 change: 0 additions & 1 deletion src/com/irccloud/android/MessageActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,6 @@ protected void onNewIntent(Intent intent) {
@SuppressLint("NewApi")
@Override
public void onResume() {
TestFlight.passCheckpoint("MessageActivity");
conn = NetworkConnection.getInstance();
if(!conn.ready) {
super.onResume();
Expand Down
5 changes: 4 additions & 1 deletion src/com/irccloud/android/MessageActivityPager.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ public void computeScroll() {

@Override
protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
try {
super.onLayout(changed, left, top, right, bottom);
} catch (IllegalStateException e) {
}
if(changed)
scrollTo(buffersDisplayWidth, 0);
}
Expand Down
5 changes: 1 addition & 4 deletions src/com/irccloud/android/NetworkConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@ public synchronized void connect(String sk) {
client = new WebSocketClient(URI.create(url), new WebSocketClient.Listener() {
@Override
public void onConnect() {
TestFlight.passCheckpoint("connect");
TestFlight.log("WebSocket connected");
Log.d(TAG, "WebSocket connected");
state = STATE_CONNECTED;
Expand Down Expand Up @@ -1721,9 +1720,7 @@ else if(conn.getErrorStream() != null)
if(reader != null)
reader.close();

if(bid == -1) {
TestFlight.passCheckpoint("oob");
} else {
if(bid != -1) {
BuffersDataSource.getInstance().updateTimeout(bid, 0);
oobTasks.remove(bid);
}
Expand Down
1 change: 0 additions & 1 deletion src/com/irccloud/android/PreferencesActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ public boolean onOptionsItemSelected(MenuItem item) {

@Override
public void onResume() {
TestFlight.passCheckpoint("PreferencesActivity");
super.onResume();
conn = NetworkConnection.getInstance();
conn.addHandler(mHandler);
Expand Down

0 comments on commit e78ee65

Please sign in to comment.