Skip to content
Snippets Groups Projects
Commit 6ce5835e authored by Matthieu Migne's avatar Matthieu Migne
Browse files

Corrected bad comparison between string and int in ControllerPluginPeer.initParticularWidgets()

parent 170e059c
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
-----
* Class NewFileHelper deleted.
* Changed visibility of method loadSetPoints in class AbstractCommandZone from protected to public.
* Corrected bad comparison between string and int in ControllerPluginPeer.initParticularWidgets().
4.3.3 15/02/2024
-----
......
......@@ -425,5 +425,5 @@ unableToFindAWebBrowserMessage=No available web browser!
onLineHelpURLCopiedInClipboardMessage=On line help's URL has been copied in the clipboard.
videoMeetingURLCopiedInClipboardMessage=Video meeting's URL has been copied in the clipboard.
surveyLogDuplicateProperty=Property already present in property list.
......@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.ill.ics</groupId>
<artifactId>nomadgui</artifactId>
<version>4.3.3</version>
<version>4.3.4-SNAPSHOT</version>
<name>NomadGUI</name>
<description>Graphical user interface for Nomad</description>
<scm>
......
......@@ -378,7 +378,7 @@ public abstract class ControllerPluginPeer extends PluginPeer {
initMethod.invoke(this, parameterValue);
}
} else {
if (value == -1 || (((String)parameterValue[0]).equals(value))) {
if (value == -1 || (((String)parameterValue[0]).equals(String.valueOf(value)))) {
initMethod.invoke(this, parameterValue);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment