Mentions légales du service

Skip to content
Snippets Groups Projects
Commit dfbee964 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- corrected failure to retrieve debug parameter

parent 10279ed8
No related branches found
No related tags found
No related merge requests found
...@@ -47,8 +47,8 @@ public class JadeFIPAAServProfile implements AlignmentServiceProfile { ...@@ -47,8 +47,8 @@ public class JadeFIPAAServProfile implements AlignmentServiceProfile {
if ( params.getParameter( "jade" ) != null ) if ( params.getParameter( "jade" ) != null )
port = Integer.parseInt( (String)params.getParameter( "jade" ) ); port = Integer.parseInt( (String)params.getParameter( "jade" ) );
if ( params.getParameter( "debug" ) != null ) if ( params.getParameter( "debug" ) != null )
debug = Integer.parseInt( (String)params.getParameter( "debug" ) ) - 1; debug = ((Integer)params.getParameter( "debug" )).intValue() - 1;
/** /**
Properties props = new Properties(); Properties props = new Properties();
**/ **/
......
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