Skip to content
Snippets Groups Projects
Commit de1e9472 authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- fixed warnings, getStreamDirectory() is package private

- fixed warnings, getStreamRelativePath() is package private
parent a82995ca
No related branches found
No related tags found
No related merge requests found
...@@ -459,7 +459,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler { ...@@ -459,7 +459,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler {
/** copied from NFS Storage Plugin, enhanced with debugging info, /** copied from NFS Storage Plugin, enhanced with debugging info,
* this combines full file path and creates parent directories if needed {@inheritDoc} * this combines full file path and creates parent directories if needed {@inheritDoc}
*/ */
private File getStreamDirectory(String path, String fileName) { File getStreamDirectory(String path, String fileName) {
log.info("SLUBStoragePlugin.getStreamDirectory path='" + path + "' fileName='" + fileName + "'"); log.info("SLUBStoragePlugin.getStreamDirectory path='" + path + "' fileName='" + fileName + "'");
File newDir = new File(parameters.get(DIR_ROOT) + File.separator + path); File newDir = new File(parameters.get(DIR_ROOT) + File.separator + path);
log.debug("SLUBStoragePlugin.getStreamDirectory newDir.getAbsolutePath()=" + newDir.getAbsolutePath()); log.debug("SLUBStoragePlugin.getStreamDirectory newDir.getAbsolutePath()=" + newDir.getAbsolutePath());
...@@ -476,7 +476,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler { ...@@ -476,7 +476,7 @@ public class SLUBStoragePlugin extends AbstractStorageHandler {
* @return calculated relative path as String * @return calculated relative path as String
* returns the path as string * returns the path as string
*/ */
private String getStreamRelativePath(StoredEntityMetaData storedEntityMetaData ) throws Exception { String getStreamRelativePath(StoredEntityMetaData storedEntityMetaData) throws Exception {
log.info("SLUBStoragePlugin.getStreamRelativePath()"); log.info("SLUBStoragePlugin.getStreamRelativePath()");
if ((null == storedEntityMetaData)) throw new AssertionError(); if ((null == storedEntityMetaData)) throw new AssertionError();
log.debug("SLUBStoragePlugin.getStreamRelativePath() assert fine"); log.debug("SLUBStoragePlugin.getStreamRelativePath() assert fine");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment