From e6da69efa9518bcbe9ec3340f82585aae3e66e35 Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Mon, 27 Jan 2020 19:39:44 +0200 Subject: [PATCH] Fix typo breaking compatibility mode builds (#323) --- .../devsoap/vaadinflow/tasks/TranspileDependenciesTask.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/com/devsoap/vaadinflow/tasks/TranspileDependenciesTask.groovy b/src/main/groovy/com/devsoap/vaadinflow/tasks/TranspileDependenciesTask.groovy index 31014b9..a27690f 100644 --- a/src/main/groovy/com/devsoap/vaadinflow/tasks/TranspileDependenciesTask.groovy +++ b/src/main/groovy/com/devsoap/vaadinflow/tasks/TranspileDependenciesTask.groovy @@ -469,7 +469,7 @@ class TranspileDependenciesTask extends DefaultTask { if (!modules.isEmpty()) { LOGGER.severe('Javascript modules is not supported in compatibility mode.') LOGGER.severe('The following classes contains @JSModule annotations') - modules.fineach { k, v -> LOGGER.severe("\t$v") } + modules.each { k, v -> LOGGER.severe("\t$v") } LOGGER.severe('Please use HTML imports instead.') throw new GradleException('Unsupported @JavascriptModule annotations found in compatibility mode. ' + RUN_WITH_INFO_FOR_MORE_INFORMATION)