This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-website.git
The following commit(s) were added to refs/heads/master by this push:
new fc57da1 Fix java helloworld example (#379)
fc57da1 is described below
commit fc57da19077a31e3fe0c2dbd1c51b5a1c68ca6c5
Author: Matt Rutkowski <[email protected]>
AuthorDate: Mon Apr 29 16:03:21 2019 -0500
Fix java helloworld example (#379)
* Fix missing brace in Java helloworld example
* Fix missing brace in Java helloworld example
* Fix missing brace in Java helloworld example
---
_includes/code/Hello.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_includes/code/Hello.java b/_includes/code/Hello.java
index 516c1d0..9801e88 100644
--- a/_includes/code/Hello.java
+++ b/_includes/code/Hello.java
@@ -3,7 +3,7 @@ package hello;
import com.google.gson.JsonObject;
public class Hello {
- public static JsonObject main(JsonObject args)
+ public static JsonObject main(JsonObject args){
String name;
try {