We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b274a0 commit 0c4e65aCopy full SHA for 0c4e65a
org.knime.scijava.scripting.node/src/org/knime/scijava/scripting/node/ui/SciJavaScriptingNodeDialog.java
@@ -266,8 +266,9 @@ private JPanel createDialogPanel(final boolean clean) {
266
m_component.remove(m_errorPanel);
267
}
268
269
- // only recompile if needed
270
- if (!m_settings.getScriptCode().equals(m_oldCode)) {
+ // only recompile if code changed or compileProduct null
+ if (!m_settings.getScriptCode().equals(m_oldCode)
271
+ || m_compileProduct == null) {
272
m_oldCode = m_settings.getScriptCode();
273
try {
274
m_compileProduct = recompile(m_settings.getScriptCode(),
0 commit comments