-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<fix>(console,precompiled): support struct abi print, fix changeDir bug when files count over 500. #746
Conversation
…ug when files count over 500.
Kudos, SonarCloud Quality Gate passed! |
response.getReturnABIObject(), | ||
response.getValues()); | ||
response.getReturnObject(), | ||
response.getResults()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
response.getReturnABIObject(), | ||
response.getValues()); | ||
response.getReturnObject(), | ||
response.getResults()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
|| returnObject.isEmpty() | ||
|| returnABIObject.isEmpty()) { | ||
// if AbiObject not exist, use this method print results | ||
printReturnResults(results); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
@@ -786,7 +715,8 @@ | |||
ConsoleUtils.singleLine(); | |||
System.out.println("Receipt message: " + response.getReceiptMessages()); | |||
System.out.println("Return message: " + response.getReturnMessage()); | |||
ConsoleUtils.printReturnResults(response.getResults()); | |||
ConsoleUtils.printResults( | |||
response.getReturnABIObject(), response.getReturnObject(), response.getResults()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
ConsoleUtils.printResults( | ||
response.getReturnABIObject(), | ||
response.getReturnObject(), | ||
response.getResults()); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
Tuple2<String, String> parentAndBase = ConsoleUtils.getParentPathAndBaseName(path); | ||
String parentDir = parentAndBase.getValue1(); | ||
String baseName = parentAndBase.getValue2(); | ||
List<BfsInfo> listResult = bfsService.list(parentDir); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
No description provided.