Fix build breakage from syntax errors

This commit is contained in:
Michael Jurka
2013-05-08 20:15:28 +02:00
parent 1b89ad4853
commit 84037f2f33
-8
View File
@@ -2242,14 +2242,6 @@ public final class Launcher extends Activity
ObjectAnimator oa = LauncherAnimUtils.ofPropertyValuesHolder(mFolderIconImageView, alpha,
scaleX, scaleY);
oa.setDuration(getResources().getInteger(R.integer.config_folderAnimDuration));
oa.addListener(new AnimatorListenerAdapter() {
public void onAnimationEnd(Animator animation) {
if (mFolderIconImageView != null) {
mFolderIconImageView.setAlpha(0);
mFolderIconImageView.setScalex(1.5f);
mFolderIconImageView.setScalex(1.5f);
}
}
oa.start();
}