Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/main/java/org/tron/common/application/ApplicationFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,10 @@

package org.tron.common.application;

import com.google.inject.Guice;
import com.google.inject.Injector;
import org.springframework.context.ApplicationContext;

public class ApplicationFactory {

/**
* Build a Guice instance.
*
* @return Guice
*/
public Injector buildGuice() {
return Guice.createInjector(
new Module());
}

/**
* Build a new application.
*/
Expand Down
60 changes: 0 additions & 60 deletions src/main/java/org/tron/common/application/Module.java

This file was deleted.

39 changes: 0 additions & 39 deletions src/main/java/org/tron/core/SpendableOutputs.java

This file was deleted.

11 changes: 0 additions & 11 deletions src/main/java/org/tron/core/db/Manager.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ public class Manager {
@Autowired
private BlockStore blockStore;
@Autowired
private UtxoStore utxoStore;
@Autowired
private WitnessStore witnessStore;
@Autowired
private AssetIssueStore assetIssueStore;
Expand Down Expand Up @@ -1205,14 +1203,6 @@ private void setBlockStore(final BlockStore blockStore) {
this.blockStore = blockStore;
}

public UtxoStore getUtxoStore() {
return this.utxoStore;
}

private void setUtxoStore(final UtxoStore utxoStore) {
this.utxoStore = utxoStore;
}

/**
* process block.
*/
Expand Down Expand Up @@ -1415,7 +1405,6 @@ public void closeAllStore() {
closeOneStore(assetIssueStore);
closeOneStore(dynamicPropertiesStore);
closeOneStore(transactionStore);
closeOneStore(utxoStore);
closeOneStore(codeStore);
closeOneStore(contractStore);
closeOneStore(storageRowStore);
Expand Down
140 changes: 0 additions & 140 deletions src/main/java/org/tron/core/db/UtxoStore.java

This file was deleted.

31 changes: 0 additions & 31 deletions src/main/java/org/tron/core/events/BlockchainListener.java

This file was deleted.

26 changes: 0 additions & 26 deletions src/main/java/org/tron/core/facade/TronBlockChain.java

This file was deleted.