Switch to unified view

a/src/net/timbusproject/context/converter/OWLExport.java b/src/net/timbusproject/context/converter/OWLExport.java
...
...
308
            }
308
            }
309
        }
309
        }
310
310
311
        if (ontologyIRI == null || ontologyIRI.trim().length() == 0) {
311
        if (ontologyIRI == null || ontologyIRI.trim().length() == 0) {
312
            ontologyIRI = getDefaultIRI(layoutFile);
312
            ontologyIRI = getDefaultIRI(layoutFile);
313
            System.out.println("Ontology IRI not specified, defaulting to " + ontologyIRI + ", computed from file " + layoutFile.getName());
313
        }
314
        }
314
315
315
        return exportLayout(layoutFile, ontologyIRI, view);
316
        return exportLayout(layoutFile, ontologyIRI, view);
316
    }
317
    }
317
318