Mentions légales du service

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

- suppressed useless cast

parent 5ff87a10
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,7 @@ public class OWLAxiomsRendererVisitor extends IndentedRendererVisitor implements
// default behaviour
if ( cell.getId() != null ) writer.print(NL+NL+"<!-- "+cell.getId()+" -->"+NL);
if ( cell instanceof EDOALCell ) {
((EDOALCell)cell).accept( this ); // useless cast?
cell.accept( this ); // useless cast?
} else {
this.cell = cell;
Object ob1 = cell.getObject1();
......
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