formatting

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2018-02-21 11:05:49 +10:00
parent 0b13e6cddd
commit 7cc1a376a3
1 changed files with 4 additions and 2 deletions

View File

@ -1030,9 +1030,11 @@ public class PathWatcher extends AbstractLifeCycle implements Runnable
register(dir,config);
final MultiException me = new MultiException();
try (Stream<Path> stream = Files.list( dir)) {
try (Stream<Path> stream = Files.list( dir))
{
stream.forEach( p -> {
if ( LOG.isDebugEnabled() ) LOG.debug( "registerTree? {}", p );
if ( LOG.isDebugEnabled() )
LOG.debug( "registerTree? {}", p );
try
{