Skip to content

Commit

Permalink
corrected code issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aquast committed Feb 19, 2024
1 parent 962f7f9 commit cde2593
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions src/main/java/de/nrw/hbz/edm/impl/EdmProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,6 @@ public class EdmProvider {

private Rdf rdf = new DeserializeRdf();
private static InputStream xmlIs = null;
private InputStream conIs = null;

/**
* Constructor takes serialized EDM as File Object
* @param file
*/
public EdmProvider(File file) {
conIs = loadXml(file);
}

/**
* Constructor takes serialized EDM as String
* @param rdfString
*/
public EdmProvider(String rdfString) {
xmlIs = loadXmlString(rdfString);
}

/**
* Constructor takes serialized EDM as InputStream
* @param rdfIs
*/
public EdmProvider(InputStream rdfIs) {
//importFile = new File(fileName);
xmlIs = rdfIs;
}

/**
* loads File content into InputStream
Expand Down

0 comments on commit cde2593

Please sign in to comment.