Skip to content

Commit 9581073

Browse files
author
Luis Sanchez
committed
[FAB-3391] cleanup java shim whitespace
Did not clean up the org.hyperledger.fabric.shim.fsm package as we expect to get rid of it in the future. Change-Id: Idaf4dde32f9e55ef978d805977b9e18433af6973 Signed-off-by: Luis Sanchez <[email protected]>
1 parent fe8d1da commit 9581073

File tree

19 files changed

+1192
-1252
lines changed

19 files changed

+1192
-1252
lines changed

core/chaincode/shim/java/src/main/java/org/hyperledger/fabric/shim/Chaincode.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
* Defines methods that all chaincodes must implement.
2020
*/
2121
public interface Chaincode {
22-
/**
23-
* Called during an instantiate transaction after the container
24-
* has been established, allowing the chaincode to initialize
25-
* its internal data.
26-
*/
27-
public Response init(ChaincodeStub stub);
28-
/**
29-
* Called for every Invoke transaction. The chaincode may change
30-
* its state variables.
31-
*/
32-
public Response invoke(ChaincodeStub stub);
22+
/**
23+
* Called during an instantiate transaction after the container has been
24+
* established, allowing the chaincode to initialize its internal data.
25+
*/
26+
public Response init(ChaincodeStub stub);
27+
28+
/**
29+
* Called for every Invoke transaction. The chaincode may change its state
30+
* variables.
31+
*/
32+
public Response invoke(ChaincodeStub stub);
3333
}

0 commit comments

Comments
 (0)