Skip to content

Commit

Permalink
FSS-153 #time 1h Working on the memory leak caused by the interceptor…
Browse files Browse the repository at this point in the history
… in big app like LCI
  • Loading branch information
lordgero committed Jul 27, 2016
1 parent 20f91f3 commit fcac04b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion droid4me/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.6.002-SNAPSHOT
2.4.6
2 changes: 1 addition & 1 deletion droid4me/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<artifactId>droid4me</artifactId>
<name>droid4me</name>
<version>2.4.6.002-SNAPSHOT</version>
<version>2.4.6</version>
<packaging>jar</packaging>
<description>droid4me is a framework library dedicated to the development of Android applications.</description>
<url>https://github.com/smartnsoft/droid4me</url>
Expand Down
1 change: 0 additions & 1 deletion droid4me/src/com/smartnsoft/droid4me/app/Droid4mizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,6 @@ public final int getOnSynchronizeDisplayObjectsCount()
{
return stateContainer.getOnSynchronizeDisplayObjectsCount();
}
/*
* Indicates whether the entity has been restarted due to a configuruation change, or being restored from a saved state.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,12 @@ public void run()
}
}
}
else if (event == InterceptorEvent.onStop || event == InterceptorEvent.onPause)
else if (event == InterceptorEvent.onStop)
{
discardDebugAggregate(activity);
if (activity != null)
{
dismissPopupWindow(activity);
}
}
}

Expand Down

0 comments on commit fcac04b

Please sign in to comment.