Skip to content

Commit

Permalink
Add whitespace after if
Browse files Browse the repository at this point in the history
  • Loading branch information
iikirilov committed Nov 7, 2018
1 parent 3e51952 commit e35745a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit e35745a

Please sign in to comment.