3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 07:12:17 +00:00

Delete some dead code.

This commit is contained in:
Mike Hearn 2011-11-25 09:58:21 +00:00
parent 5561ffcb90
commit 9549d345a7
2 changed files with 0 additions and 18 deletions

2
TODO
View File

@ -31,8 +31,6 @@ Impacts from Steves changes:
- LazyParseByteCacheTest: - LazyParseByteCacheTest:
- some redundant asserts - some redundant asserts
- huge functions - huge functions
- Manipulator.java needs docs or to be removed
- SpeedTest has a lot of unused fields, large functions. See if it can be simplified/densified. - or removed
- Delete the code related to deduping. The new network management code to be checked in later makes it unnecessary. - Delete the code related to deduping. The new network management code to be checked in later makes it unnecessary.
Also remove singleDigest as a result (it duplicates Sha256Hash). Also remove singleDigest as a result (it duplicates Sha256Hash).

View File

@ -1,16 +0,0 @@
package com.google.bitcoin.core;
public abstract class Manipulator<M extends Message> {
public abstract void manipulate(BitcoinSerializer bs, M message) throws Exception;
public abstract void manipulate(BitcoinSerializer bs, byte[] bytes) throws Exception;
public abstract String getDescription();
public void beforeTest() {}
public void afterTest() {}
public long timeForR224Test() {return -1l;}
}