Skip to content

Commit 600ece6

Browse files
committed
Minor fixes
1 parent 67ce22c commit 600ece6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ public String getFooBar(String bar){
200200
}
201201
```
202202

203+
----
203204
### Code Styling
204205
The Code follows a basic styling Guide that you need to follow when making a Pull request.
205206

@@ -289,7 +290,7 @@ public void doSomething(@Nonnull String text){
289290
}
290291

291292
// Right
292-
public void doSomething(@Nullable String text){
293+
public void doSomething(@Nonnull String text){
293294
CheckUtil.notEmpty(text, "Text");
294295

295296
System.out.println("Provided Text: " + text);

0 commit comments

Comments
 (0)