Skip to content

Commit 7d554a9

Browse files
committed
removed annotation type from filename
1 parent b4469cb commit 7d554a9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

quads-creator/src/main/java/fr/vcity/RDFConverter.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,7 @@ private String getTheoreticalFileName(String inputFolder) {
208208
* @return The built output file name
209209
*/
210210
private String getOutputFileName(String outputFolder, String inputFile) {
211-
if (annotationType.equals(AnnotationType.THEORETICAL.getLabel())) {
212-
return getInputFileName(outputFolder, inputFile) + ".theoretical.trig";
213-
} else {
214-
return getInputFileName(outputFolder, inputFile) + ".relational.trig";
215-
}
211+
return getInputFileName(outputFolder, inputFile) + ".trig";
216212
}
217213

218214
/**

0 commit comments

Comments
 (0)