1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-24 18:27:11 -07:00

Fixed pmd

This commit is contained in:
Alex Dibrivnyi 2017-05-16 00:01:42 +03:00
parent 170c879b10
commit fc4c2ee3ab

View file

@ -107,10 +107,10 @@ public class AboutActivity extends MaterialAboutActivity {
new MaterialAboutItemOnClickListener() {
@Override
public void onClick(boolean b) {
if (config.share != null) {
config.share.share();
} else {
if (config.share == null) {
ShareUtil.share(AboutActivity.this);
} else {
config.share.share();
}
logUIEventName(config.analytics, config.logUiEventName, getString(R.string.egab_share_log_event));
}