Skip to content

Commit 581a533

Browse files
committed
fix java doc generate failed
1 parent 0558813 commit 581a533

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

cpp/wedpr-transport/sdk-wrapper/java/bindings/src/main/java/com/webank/wedpr/sdk/jni/generated/IFrontClient.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,7 @@ public synchronized void delete() {
4040
}
4141
}
4242

43-
/**
44-
* : receive message from gateway, call by gateway<br>
45-
* <br>
46-
*
47-
* @return void
48-
*/
43+
/** receive message from gateway, call by gateway<br> */
4944
public void onReceiveMessage(
5045
Message _msg,
5146
SWIGTYPE_p_std__functionT_void_fstd__shared_ptrT_bcos__Error_tF_t _callback) {

cpp/wedpr-transport/sdk-wrapper/java/bindings/src/main/java/com/webank/wedpr/sdk/jni/transport/impl/TransportImpl.java

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,19 +87,13 @@ public void stop() {
8787
this.transport.stop();
8888
}
8989

90-
/**
91-
* @param component the component used to router
92-
* @throws Exception failed case
93-
*/
90+
/** @param component the component used to router */
9491
@Override
9592
public void registerComponent(String component) {
9693
this.transport.getFront().registerComponent(component);
9794
}
9895

99-
/**
100-
* @param component the component used to route
101-
* @throws Exception failed case
102-
*/
96+
/** @param component the component used to route */
10397
@Override
10498
public void unRegisterComponent(String component) {
10599
this.transport.getFront().unRegisterComponent(component);

0 commit comments

Comments
 (0)