You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2018/12/17 06:11:05 UTC

[07/21] tomee git commit: mend

mend


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/3412c449
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/3412c449
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/3412c449

Branch: refs/heads/master
Commit: 3412c4499b860563c3670f372bdb86d6f26355c9
Parents: 6521daf
Author: Ryan McGuinness <ry...@homedepot.com>
Authored: Sun Dec 16 13:30:37 2018 -0500
Committer: Ryan McGuinness <ry...@homedepot.com>
Committed: Sun Dec 16 13:30:37 2018 -0500

----------------------------------------------------------------------
 examples/access-timeout/README.adoc    | 14 +++++++-------
 examples/mp-config-example/README.adoc |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/3412c449/examples/access-timeout/README.adoc
----------------------------------------------------------------------
diff --git a/examples/access-timeout/README.adoc b/examples/access-timeout/README.adoc
index e653584..ca9af28 100644
--- a/examples/access-timeout/README.adoc
+++ b/examples/access-timeout/README.adoc
@@ -38,13 +38,13 @@ The `@AccessTimeout` is simply a convenience wrapper around the `long` and `Time
 
 [source,java,numbered]
 ----
-    import java.util.concurrent.TimeUnit;
-    @Target({METHOD, TYPE})
-    @Retention(RUNTIME)
-    public @interface AccessTimeout {
-        long value();
-        TimeUnit unit() default TimeUnit.MILLISECONDS;
-    }
+import java.util.concurrent.TimeUnit;
+@Target({METHOD, TYPE})
+@Retention(RUNTIME)
+public @interface AccessTimeout {
+    long value();
+    TimeUnit unit() default TimeUnit.MILLISECONDS;
+}
 ----
 
 == Usage

http://git-wip-us.apache.org/repos/asf/tomee/blob/3412c449/examples/mp-config-example/README.adoc
----------------------------------------------------------------------
diff --git a/examples/mp-config-example/README.adoc b/examples/mp-config-example/README.adoc
index 0d254f2..5344774 100644
--- a/examples/mp-config-example/README.adoc
+++ b/examples/mp-config-example/README.adoc
@@ -9,7 +9,7 @@ This is an example on how to use microprofile config in TomEE.
 
 [source,bash]
 ----
-    mvn clean install tomee:run 
+mvn clean install tomee:run 
 ----
 
 == API