Use @since tags in Javadoc vs. "created on" metadata

- @since is recognized by Javadoc processor; "created on:" is not
 - Remove hh:mm information as it is unnecessary
 - Replace slashes in dates with dots, e.g. 26/12/2014 => 26.12.2014
This commit is contained in:
Chris Beams 2014-12-26 11:40:46 +01:00
parent c38907bc34
commit 7d2cf7f954
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
119 changed files with 123 additions and 123 deletions

View File

@ -1,7 +1,7 @@
// www.ethereumj.com
// @author Roman Mandeleil
// Created on: 22/03/2014 19:22
// @since 22.03.2014
grammar Serpent;
tokens {

View File

@ -9,7 +9,7 @@ import org.ethereum.facade.EthereumFactory;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 14/11/2014 07:39
* @since 14.11.2014
*/
public class Start {

View File

@ -11,7 +11,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 13/11/2014 14:40
* @since 13.11.2014
*/
@Component
public class CLIInterface {

View File

@ -14,7 +14,7 @@ import org.springframework.stereotype.Component;
* Utility class to retrieve property values from the system.properties files
*
* @author Roman Mandeleil
* Created on: 22/05/2014 19:22
* @since 22.05.2014
*/
public class SystemProperties {

View File

@ -26,7 +26,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
*
* @author Roman Mandeleil
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
public class Block {

View File

@ -57,7 +57,7 @@ import static org.ethereum.core.Denomination.SZABO;
*
* @author Roman Mandeleil
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
@Component
public class BlockchainImpl implements Blockchain {

View File

@ -10,7 +10,7 @@ import java.util.Arrays;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 20/11/2014 11:10
* @since 20.11.2014
*
* http://www.herongyang.com/Java/Bit-String-Set-Bit-to-Byte-Array.html
*/

View File

@ -15,7 +15,7 @@ import java.util.Map;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 09/11/2014 09:31
* @since 09.11.2014
*/
public class Chain {

View File

@ -16,7 +16,7 @@ import static org.ethereum.util.ByteUtil.EMPTY_BYTE_ARRAY;
* www.ethergit.com
*
* @author Roman Mandeleil
* Created on: 19/12/2014 12:56
* @since 19.12.2014
*/
public class TransactionExecutor {

View File

@ -17,7 +17,7 @@ import java.util.List;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 12/11/2014 17:16
* @since 12.11.2014
*/
@Repository
@Transactional(propagation = Propagation.SUPPORTS)

View File

@ -10,7 +10,7 @@ import java.math.BigInteger;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 14/11/2014 09:59
* @since 14.11.2014
*/
@Entity
@Table(name = "block")

View File

@ -7,7 +7,7 @@ import org.spongycastle.util.encoders.Hex;
/**
* @author Roman Mandeleil
* Created on: 11/06/2014 15:02
* @since 11.06.2014
*/
public class ByteArrayWrapper implements Comparable<ByteArrayWrapper> {

View File

@ -14,7 +14,7 @@ import org.spongycastle.util.encoders.Hex;
/**
* @author Roman Mandeleil
* Created on: 24/06/2014 00:12
* @since 24.06.2014
*/
public class ContractDetails {

View File

@ -35,7 +35,7 @@ import static org.ethereum.util.ByteUtil.wrap;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 17/11/2014 21:15
* @since 17.11.2014
*/
public class RepositoryDummy implements Repository {

View File

@ -33,7 +33,7 @@ import static org.ethereum.util.ByteUtil.wrap;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 17/11/2014 21:15
* @since 17.11.2014
*/
@Component
public class RepositoryImpl implements Repository {

View File

@ -20,7 +20,7 @@ import static org.ethereum.util.ByteUtil.wrap;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 17/11/2014 21:15
* @since 17.11.2014
*/
public class RepositoryTrack implements Repository {

View File

@ -9,7 +9,7 @@ import java.util.Map;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 11/06/2014 14:09
* @since 11.06.2014
*/
public class TrackDatabase implements Database {

View File

@ -10,7 +10,7 @@ import java.math.BigInteger;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 14/11/2014 09:59
* @since 14.11.2014
*/
@Entity
@Table(name = "transaction_receipt")

View File

@ -17,7 +17,7 @@ import java.util.concurrent.Future;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 27/07/2014 09:11
* @since 27.07.2014
*/
public interface Ethereum {

View File

@ -24,7 +24,7 @@ import java.util.Properties;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 13/11/2014 11:22
* @since 13.11.2014
*/
@Configuration
@EnableTransactionManagement

View File

@ -34,7 +34,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 27/07/2014 09:12
* @since 27.07.2014
*/
@Component
public class EthereumImpl implements Ethereum {

View File

@ -14,7 +14,7 @@ import java.util.HashMap;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 08/09/2014 10:25
* @since 08.09.2014
*/
public interface Repository {

View File

@ -39,7 +39,7 @@ import java.util.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 26/06/2014 10:08
* @since 26.06.2014
*/
public class JSONHelper {

View File

@ -15,7 +15,7 @@ import java.util.regex.Pattern;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:25
* @since 28.06.2014
*/
public class AccountState {

View File

@ -10,7 +10,7 @@ import java.math.BigInteger;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:25
* @since 28.06.2014
*/
public class CallCreate {

View File

@ -9,7 +9,7 @@ import java.math.BigInteger;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:23
* @since 28.06.2014
*/
public class Env {

View File

@ -10,7 +10,7 @@ import java.math.BigInteger;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:23
* @since 28.06.2014
*/
public class Exec {

View File

@ -15,7 +15,7 @@ import java.util.regex.Pattern;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 11:59
* @since 28.06.2014
*/
public class Helper {

View File

@ -14,7 +14,7 @@ import java.util.Map;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 15/12/2014 12:24
* @since 15.12.2014
*/
public class StateTestCase {

View File

@ -11,7 +11,7 @@ import java.util.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 10/07/2014 09:46
* @since 10.07.2014
*/
public class StateTestSuite {

View File

@ -14,7 +14,7 @@ import java.util.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:22
* @since 28.06.2014
*/
public class TestCase {

View File

@ -12,7 +12,7 @@ import java.math.BigInteger;
* www.ethergit.com
*
* @author Roman Mandeleil
* Created on: 19/12/2014 12:22
* @since 19.12.2014
*/
public class TestProgramInvokeFactory implements ProgramInvokeFactory {

View File

@ -24,7 +24,7 @@ import static org.ethereum.util.ByteUtil.wrap;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 02/07/2014 13:03
* @since 02.07.2014
*/
public class TestRunner {

View File

@ -9,7 +9,7 @@ import java.util.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 10/07/2014 09:46
* @since 10.07.2014
*/
public class TestSuite {

View File

@ -13,7 +13,7 @@ import static org.ethereum.util.ByteUtil.toHexString;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 28/06/2014 10:25
* @since 28.06.2014
*/
public class Transaction {

View File

@ -8,7 +8,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethergit.com
*
* @author Roman Mandeleil
* Created on: 15/12/2014 12:41
* @since 15.12.2014
*/
public class Utils {

View File

@ -10,7 +10,7 @@ import java.util.Set;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 27/07/2014 11:20
* @since 27.07.2014
*/
public interface EthereumListener {

View File

@ -8,7 +8,7 @@ import java.util.Set;
/**
* @author Roman Mandeleil
* Created on: 08/08/2014 15:22
* @since 08.08.2014
*/
public class EthereumListenerAdapter implements EthereumListener {

View File

@ -11,7 +11,7 @@ import java.util.Set;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 12/11/2014 08:34
* @since 12.11.2014
*/
@Component(value = "EthereumListener")
public class EthereumListenerWrapper implements EthereumListener {

View File

@ -8,7 +8,7 @@ import javax.annotation.PostConstruct;
* www.ethergit.com
*
* @author Roman Mandeleil
* Created on: 11/12/2014 11:24
* @since 11.12.2014
*/
@Component
public class AdminInfo {

View File

@ -27,7 +27,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* WorldManager is a singleton containing references to different parts of the system.
*
* @author Roman Mandeleil
* Created on: 01/06/2014 10:44
* @since 01.06.2014
*/
@Component
public class WorldManager {

View File

@ -20,7 +20,7 @@ import java.util.concurrent.ConcurrentLinkedQueue;
* Based on these hashes, blocks are added to the queue.
*
* @author Roman Mandeleil
* Created on: 27/07/2014 11:28
* @since 27.07.2014
*/
@Component
public class BlockQueue {

View File

@ -4,7 +4,7 @@ package org.ethereum.net.message;
* Abstract message class for all messages on the Ethereum network
*
* @author Roman Mandeleil
* Created on: 06/04/14 14:58
* @since 06.04.14
*/
public abstract class Message {

View File

@ -21,7 +21,7 @@ import org.spongycastle.util.encoders.Hex;
* will always be the same and therefore don't need to be created each time.
*
* @author Roman Mandeleil
* Created on: 13/04/14 20:19
* @since 13.04.14
*/
public class StaticMessages {

View File

@ -17,7 +17,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
/**
* @author Roman Mandeleil
* Created on: 22/05/2014 09:10
* @since 22.05.2014
*/
@Component
public class PeerDiscovery {

View File

@ -11,7 +11,7 @@ import java.util.concurrent.ThreadPoolExecutor;
* thread bounds and queue capacities are reached
*
* @author Roman Mandeleil
* Created on: 22/05/2014 10:31
* @since 22.05.2014
*/
public class RejectionLogger implements RejectedExecutionHandler {

View File

@ -12,7 +12,7 @@ import java.util.concurrent.ThreadPoolExecutor;
/**
* @author Roman Mandeleil
* Created on: 22/05/2014 09:26
* @since 22.05.2014
*/
@Component
@Scope("prototype")

View File

@ -18,7 +18,7 @@ import java.math.BigInteger;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 01/11/2014 17:01
* @since 01.11.2014
*/
@Component
@Scope("prototype")

View File

@ -16,7 +16,7 @@ import java.util.*;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 11/11/2014 13:38
* @since 11.11.2014
*/
@Component
public class ChannelManager {

View File

@ -30,7 +30,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 01/11/2014 10:58
* @since 01.11.2014
*/
@Component
public class EthereumChannelInitializer extends ChannelInitializer<NioSocketChannel> {

View File

@ -23,7 +23,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 01/11/2014 10:11
* @since 01.11.2014
*/
@Component
public class PeerServer {

View File

@ -8,7 +8,7 @@ import org.ethereum.core.Transaction;
/**
* @author Roman Mandeleil
* Created on: 23/05/2014 19:07
* @since 23.05.2014
*/
public class TransactionExecutor {

View File

@ -14,7 +14,7 @@ import static java.lang.Thread.sleep;
/**
* @author Roman Mandeleil
* Created on: 23/05/2014 18:33
* @since 23.05.2014
*/
public class TransactionTask implements Callable<Transaction> {

View File

@ -4,7 +4,7 @@ import org.ethereum.core.Transaction;
/**
* @author Roman Mandeleil
* Created on: 23/05/2014 18:41
* @since 23.05.2014
*/
public class WalletTransaction {

View File

@ -8,7 +8,7 @@ import org.apache.maven.plugin.MojoFailureException;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 25/04/14 17:06
* @since 25.04.14
*/
public class ParserGenerator {

View File

@ -20,7 +20,7 @@ import java.util.regex.Pattern;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 13/05/14 19:37
* @since 13.05.14
*/
public class SerpentCompiler {

View File

@ -16,7 +16,7 @@ import java.util.regex.Pattern;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 05/05/14 13:41
* @since 05.05.14
*/
public class SerpentToAssemblyCompiler extends SerpentBaseVisitor<String> {

View File

@ -13,7 +13,7 @@ import org.iq80.leveldb.WriteBatch;
* www.ethereumJ.com
*
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
public class Cache {

View File

@ -9,7 +9,7 @@ import java.util.Set;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 29/08/2014 10:46
* @since 29.08.2014
*/
public class CollectFullSetOfNodes implements TrieImpl.ScanAction {

View File

@ -6,7 +6,7 @@ import org.ethereum.util.Value;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 29/08/2014 10:46
* @since 29.08.2014
*/
public class CountAllNodes implements TrieImpl.ScanAction {

View File

@ -25,7 +25,7 @@ import org.ethereum.util.Value;
* *
* Also, we add another conceptual change: internal nodes can no longer
* have values, only leaves with no children of their own can; however,
* since to be fully generic we want the key/value store to be able to
* since to be fully generic we want the key/value store to be able
* store keys like 'dog' and 'doge' at the same time, we simply add
* a terminator symbol (16) to the alphabet so there is never a value
* "en-route" to another value.
@ -42,7 +42,7 @@ import org.ethereum.util.Value;
* www.ethereumJ.com
*
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
public class Node {

View File

@ -7,7 +7,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 29/08/2014 10:46
* @since 29.08.2014
*/
public class TraceAllNodes implements TrieImpl.ScanAction {

View File

@ -38,7 +38,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
public class TrieImpl implements Trie {

View File

@ -9,7 +9,7 @@ import static org.ethereum.util.CompactEncoder.unpackToNibbles;
/*
* www.ethereumJ.com
* @author Nick Savers
* Created on: 20/05/2014 10:44
* @since 20.05.2014
*/
public class TrieIterator {

View File

@ -10,7 +10,7 @@ import static org.ethereum.config.SystemProperties.CONFIG;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 25/07/2014 13:01
* @since 25.07.2014
*/
public class AdvancedDeviceUtils {

View File

@ -47,7 +47,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/04/2014 10:45
* @since 01.04.2014
*/
public class RLP {

View File

@ -8,7 +8,7 @@ import java.io.Serializable;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/04/2014 10:45
* @since 01.04.2014
*/
public interface RLPElement extends Serializable {

View File

@ -5,7 +5,7 @@ package org.ethereum.util;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 21/04/14 16:26
* @since 21.04.14
*/
public class RLPItem implements RLPElement {

View File

@ -6,7 +6,7 @@ import java.util.ArrayList;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 21/04/14 16:26
* @since 21.04.14
*/
public class RLPList extends ArrayList<RLPElement> implements RLPElement {

View File

@ -4,7 +4,7 @@ package org.ethereum.vm;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 03/07/2014 08:29
* @since 03.07.2014
*/
public class CallCreate {

View File

@ -16,7 +16,7 @@ import java.nio.ByteBuffer;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/06/2014 10:45
* @since 01.06.2014
*/
public class DataWord implements Comparable<DataWord> {

View File

@ -18,7 +18,7 @@ import java.util.List;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 19/11/2014 22:03
* @since 19.11.2014
*/
public class LogInfo {

View File

@ -30,7 +30,7 @@ import static org.ethereum.util.ByteUtil.EMPTY_BYTE_ARRAY;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/06/2014 10:45
* @since 01.06.2014
*/
public class Program {

View File

@ -6,7 +6,7 @@ import org.ethereum.facade.Repository;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 03/06/2014 14:59
* @since 03.06.2014
*/
public interface ProgramInvoke {

View File

@ -10,7 +10,7 @@ import java.math.BigInteger;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 19/12/2014 12:14
* @since 19.12.2014
*/
public interface ProgramInvokeFactory {

View File

@ -18,7 +18,7 @@ import java.math.BigInteger;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 08/06/2014 09:59
* @since 08.06.2014
*/
@Component("ProgramInvokeFactory")
public class ProgramInvokeFactoryImpl implements ProgramInvokeFactory {

View File

@ -10,7 +10,7 @@ import java.util.Map;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 03/06/2014 15:00
* @since 03.06.2014
*/
public class ProgramInvokeImpl implements ProgramInvoke {

View File

@ -10,7 +10,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 03/06/2014 15:00
* @since 03.06.2014
*/
public class ProgramInvokeMockImpl implements ProgramInvoke {

View File

@ -10,7 +10,7 @@ import java.util.List;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 07/06/2014 17:45
* @since 07.06.2014
*/
public class ProgramResult {

View File

@ -60,7 +60,7 @@ import static org.ethereum.vm.OpCode.PUSH1;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/06/2014 10:44
* @since 01.06.2014
*/
public class VM {

View File

@ -24,7 +24,7 @@ import java.util.*;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 28/10/2014 23:39
* @since 28.10.2014
*/
public class Op {

View File

@ -13,7 +13,7 @@ import java.util.List;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 28/10/2014 23:47
* @since 28.10.2014
*/
public class ProgramTrace {

View File

@ -18,7 +18,7 @@ import java.util.Properties;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 16/11/2014 07:53
* @since 16.11.2014
*/
public class TestContext {

View File

@ -9,7 +9,7 @@ import org.spongycastle.util.encoders.Hex;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 20/11/2014 11:29
* @since 20.11.2014
*/
public class BloomTest {

View File

@ -36,7 +36,7 @@ import static junit.framework.TestCase.assertEquals;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 09/11/2014 23:35
* @since 09.11.2014
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@ -13,7 +13,7 @@ import static org.junit.Assert.*;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 05/12/2014 16:26
* @since 05.12.2014
*/
public class LogInfoTest {

View File

@ -12,7 +12,7 @@ import static org.junit.Assert.assertEquals;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 05/12/2014 16:26
* @since 05.12.2014
*/
public class TransactionReceiptTest {

View File

@ -32,7 +32,7 @@ import java.math.BigInteger;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 17/05/14 17:06
* @since 17.05.14
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
@RunWith(SpringJUnit4ClassRunner.class)

View File

@ -22,7 +22,7 @@ import static org.junit.Assert.assertNull;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 17/11/2014 23:08
* @since 17.11.2014
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)

View File

@ -19,7 +19,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 11/06/2014 14:54
* @since 11.06.2014
*/
public class TrackDatabaseTest {

View File

@ -11,7 +11,7 @@ import org.spongycastle.util.encoders.Hex;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 09/11/2014 09:21
* @since 09.11.2014
*/
public class ForkGenTest {

View File

@ -14,7 +14,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
* www.etherj.com
*
* @author Roman Mandeleil
* Created on: 08/11/2014 12:21
* @since 08.11.2014
*/
public class MineSwarm {

View File

@ -14,7 +14,7 @@ import java.util.List;
/**
* @author Roman Mandeleil
* Created on: 22/05/2014 09:26
* @since 22.05.2014
*/
public class MinerThread implements Runnable {

View File

@ -16,7 +16,7 @@ import java.util.List;
/**
* @author Roman Mandeleil
* Created on: 15/10/2014 12:34
* @since 15.10.2014
*/
public class AdaptiveMessageIdsTest {

View File

@ -10,7 +10,7 @@ import org.spongycastle.util.encoders.Hex;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 28/05/2014 20:05
* @since 28.05.2014
*/
public class MachineCompileTest {

View File

@ -11,7 +11,7 @@ import org.junit.Test;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 13/05/14 10:07
* @since 13.05.14
*/
public class SerpentCompileTest {

View File

@ -13,7 +13,7 @@ import static org.junit.Assert.assertEquals;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 17/05/14 15:38
* @since 17.05.14
*/
public class UtilsTest {

View File

@ -21,7 +21,7 @@ import static org.junit.Assert.assertEquals;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 16/06/2014 10:37
* @since 16.06.2014
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class VMComplexTest {

View File

@ -21,7 +21,7 @@ import static org.junit.Assert.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/06/2014 11:05
* @since 01.06.2014
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)

View File

@ -21,7 +21,7 @@ import static org.junit.Assert.*;
* www.ethereumJ.com
*
* @author Roman Mandeleil
* Created on: 01/06/2014 11:05
* @since 01.06.2014
*/
@FixMethodOrder(MethodSorters.NAME_ASCENDING)

Some files were not shown because too many files have changed in this diff Show More