Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Remove <p> tags from comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehearn committed Dec 3, 2014
1 parent 9adcb23 commit fd5abff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/src/main/java/lighthouse/LighthouseBackend.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@
import static lighthouse.utils.MoreBindings.mergeSets;

/**
* <p>Exposes observable data about pledges and projects that is based on combining the output of a wallet and
* DiskProjectsManager (local folders) with (when used from the app) data queried from remote project servers.</p>
* Exposes observable data about pledges and projects that is based on combining the output of a wallet and
* DiskProjectsManager (local folders) with (when used from the app) data queried from remote project servers.
*
* <p>LighthouseBackend is a bit actor-ish: it uses its own thread which owns almost all internal state. Other
* LighthouseBackend is a bit actor-ish: it uses its own thread which owns almost all internal state. Other
* objects it owns can sometimes use their own threads, but results are always marshalled onto the LighthouseBackend
* thread before the Observable collections are modified. This design assists with avoiding locking and keeping
* concurrency manageable. A prior approach based on ordinary threading and locking got too complicated.</p>
* concurrency manageable. A prior approach based on ordinary threading and locking got too complicated.
*
* <p>LighthouseBackend is used in both the GUI app and on the server. In the server case the wallet will typically be
* empty and projects/pledges are stored on disk only. Ideally, it's connected to a local Bitcoin Core node.</p>
* LighthouseBackend is used in both the GUI app and on the server. In the server case the wallet will typically be
* empty and projects/pledges are stored on disk only. Ideally, it's connected to a local Bitcoin Core node.
*/
public class LighthouseBackend extends AbstractBlockChainListener {
private static final Logger log = LoggerFactory.getLogger(LighthouseBackend.class);
Expand Down

0 comments on commit fd5abff

Please sign in to comment.