Mentions légales du service

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

- Fixed a problem with Jade when running a server with no X server running (serv)

parent 4de1aa0b
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,9 @@ with a warning: ...@@ -60,7 +60,9 @@ with a warning:
<!--h2>Version 4.9 (2xxx): ??/??/201X - Letraset</h2--> <!--h2>Version 4.9 (2xxx): ??/??/201X - Letraset</h2-->
<p><ul compact="1"> <p><ul compact="1">
<li>Fixed a problem with Jade when running a server with no X server running (serv)</li>
<li>Moved all shell examples from csh to bash (html)</li> <li>Moved all shell examples from csh to bash (html)</li>
<li>Clarified EDOAL documentation (html)</li>
<li>Fixed all Javadoc generation warnings (distrib)</li> <li>Fixed all Javadoc generation warnings (distrib)</li>
</ul></p> </ul></p>
......
...@@ -257,14 +257,6 @@ public class BasicAlignment implements Alignment, Extensible { ...@@ -257,14 +257,6 @@ public class BasicAlignment implements Alignment, Extensible {
} catch ( ClassNotFoundException cnfex ) { } catch ( ClassNotFoundException cnfex ) {
throw new AlignmentException( "Unknown relation class : "+classname, cnfex ); throw new AlignmentException( "Unknown relation class : "+classname, cnfex );
} }
// Taken care of by init()
/*
try {
Class[] cArg = { String.class };
relationCreationMethod = relationType.getMethod( "createRelation", cArg);
} catch ( NoSuchMethodException nsmex ) {
throw new AlignmentException ( "Cannot create relation of required type", nsmex );
}*/
}; };
public Class<? extends Relation> getRelationType() { public Class<? extends Relation> getRelationType() {
......
...@@ -1525,6 +1525,8 @@ public class AServProtocolManager implements Service { ...@@ -1525,6 +1525,8 @@ public class AServProtocolManager implements Service {
|| classname.startsWith( "org.apache.xml" ) || classname.startsWith( "org.apache.xml" )
|| classname.startsWith( "org.apache.html" ) || classname.startsWith( "org.apache.html" )
|| classname.startsWith( "org.apache.wml" ) || classname.startsWith( "org.apache.wml" )
// jade.tools.rma.StartDialog raises problems
|| classname.startsWith( "jade." )
) return false; ) return false;
Class<?> cl = Class.forName(classname); Class<?> cl = Class.forName(classname);
int mod = cl.getModifiers(); int mod = cl.getModifiers();
......
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