3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00

Make Context.confidenceTable private. The getter method can be overridden if a subclass wishes to modify this object.

This commit is contained in:
Mike Hearn 2015-03-01 20:18:00 +01:00
parent 04bc624a91
commit 5a824f8411

View File

@ -13,7 +13,7 @@ import static com.google.common.base.Preconditions.checkState;
*/ */
public class Context { public class Context {
private static final Logger log = LoggerFactory.getLogger(Context.class); private static final Logger log = LoggerFactory.getLogger(Context.class);
protected TxConfidenceTable confidenceTable; private TxConfidenceTable confidenceTable;
/** /**
* Creates a new context object. For now, this will be done for you by the framework. Eventually you will be * Creates a new context object. For now, this will be done for you by the framework. Eventually you will be