From e35745a4043da0103e2a94b0e89027c938427711 Mon Sep 17 00:00:00 2001 From: ivaylo Date: Wed, 7 Nov 2018 14:45:34 +0000 Subject: [PATCH] Add whitespace after `if` --- .../main/java/org/web3j/codegen/SolidityFunctionWrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/src/main/java/org/web3j/codegen/SolidityFunctionWrapper.java b/codegen/src/main/java/org/web3j/codegen/SolidityFunctionWrapper.java index 410ed2c01..6d36d3c96 100644 --- a/codegen/src/main/java/org/web3j/codegen/SolidityFunctionWrapper.java +++ b/codegen/src/main/java/org/web3j/codegen/SolidityFunctionWrapper.java @@ -684,7 +684,7 @@ MethodSpec buildFunction( // If the solidity function name is a reserved word // in the current java version prepend it with "_" - if(!SourceVersion.isName(functionName)) { + if (!SourceVersion.isName(functionName)) { functionName = "_" + functionName; }