Fix JavaDoc
This commit is contained in:
parent
c7c21cb602
commit
1f9fc44f72
1 changed files with 9 additions and 7 deletions
|
@ -1,11 +1,5 @@
|
||||||
package com.fsck.k9.activity;
|
package com.fsck.k9.activity;
|
||||||
|
|
||||||
import com.fsck.k9.Account;
|
|
||||||
import com.fsck.k9.K9;
|
|
||||||
import com.fsck.k9.Preferences;
|
|
||||||
import com.fsck.k9.R;
|
|
||||||
import com.fsck.k9.mail.Store;
|
|
||||||
import com.fsck.k9.service.DatabaseUpgradeService;
|
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
|
@ -17,6 +11,14 @@ import android.os.Bundle;
|
||||||
import android.support.v4.content.LocalBroadcastManager;
|
import android.support.v4.content.LocalBroadcastManager;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import com.fsck.k9.Account;
|
||||||
|
import com.fsck.k9.K9;
|
||||||
|
import com.fsck.k9.Preferences;
|
||||||
|
import com.fsck.k9.R;
|
||||||
|
import com.fsck.k9.controller.MessagingController;
|
||||||
|
import com.fsck.k9.mailstore.LocalStore;
|
||||||
|
import com.fsck.k9.service.DatabaseUpgradeService;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This activity triggers a database upgrade if necessary and displays the current upgrade progress.
|
* This activity triggers a database upgrade if necessary and displays the current upgrade progress.
|
||||||
|
@ -49,7 +51,7 @@ import android.widget.TextView;
|
||||||
* Currently we make no attempts to stop the background code (e.g. {@link MessagingController}) from
|
* Currently we make no attempts to stop the background code (e.g. {@link MessagingController}) from
|
||||||
* opening the accounts' databases. If this happens the upgrade is performed in one of the
|
* opening the accounts' databases. If this happens the upgrade is performed in one of the
|
||||||
* background threads and not by {@link DatabaseUpgradeService}. But this is not a problem. Due to
|
* background threads and not by {@link DatabaseUpgradeService}. But this is not a problem. Due to
|
||||||
* the locking in {@link Store#getLocalInstance(Account, Context)} the upgrade
|
* the locking in {@link LocalStore#getInstance(Account, Context)} the upgrade
|
||||||
* service will block in the {@link Account#getLocalStore()} call and from the outside (especially
|
* service will block in the {@link Account#getLocalStore()} call and from the outside (especially
|
||||||
* for this activity) it will appear as if {@link DatabaseUpgradeService} is performing the upgrade.
|
* for this activity) it will appear as if {@link DatabaseUpgradeService} is performing the upgrade.
|
||||||
* </p>
|
* </p>
|
||||||
|
|
Loading…
Reference in a new issue