Skip to content

Commit

Permalink
force default javascript executor for /js path
Browse files Browse the repository at this point in the history
  • Loading branch information
delchev committed Apr 1, 2019
1 parent 30507a9 commit f2e966d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010-2018 SAP and others.
* Copyright (c) 2010-2019 SAP and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -29,8 +29,8 @@ public class JavascriptEngineProcessor implements IJavascriptEngineProcessor {

private static final ServiceLoader<IJavascriptEngineExecutor> JAVASCRIPT_ENGINE_EXECUTORS = ServiceLoader.load(IJavascriptEngineExecutor.class);

@Inject
private IJavascriptEngineExecutor engineExecutor;
// @Inject
private IJavascriptEngineExecutor engineExecutor = new DefaultJavascriptEngineExecutor();

/*
* (non-Javadoc)
Expand Down

0 comments on commit f2e966d

Please sign in to comment.