From 1800dfa1d81d4cad9b7dde5d54458971d685bd42 Mon Sep 17 00:00:00 2001 From: Thomas Queste Date: Fri, 5 Dec 2014 09:10:56 +0100 Subject: [PATCH] Example does not compile '}' at wrong line in the two example. --- src/site/apt/threads-VerboseThreads.apt.vm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/site/apt/threads-VerboseThreads.apt.vm b/src/site/apt/threads-VerboseThreads.apt.vm index 9b66c8a5..d011cfd9 100644 --- a/src/site/apt/threads-VerboseThreads.apt.vm +++ b/src/site/apt/threads-VerboseThreads.apt.vm @@ -58,9 +58,8 @@ public class Main { public void run() { // some sensitive operation that may throw // a runtime exception - }, - 1L, 1L, TimeUnit.SECONDS - } + } + }, 1L, 1L, TimeUnit.SECONDS ); } } @@ -87,9 +86,8 @@ public class Main { public void run() { // the same sensitive operation that may throw // a runtime exception - }, - 1L, 1L, TimeUnit.SECONDS - } + } + }, 1L, 1L, TimeUnit.SECONDS ); } }