Skip to content
Snippets Groups Projects
Commit 83d1ee12 authored by brinn's avatar brinn
Browse files

change: change visibility of method getLibraries() to public

SVN: 22582
parent a7e49e71
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,14 @@ public class ImageReaderFactory
libraries = CollectionUtils.asList(librariesIterator);
}
/**
* Returns the list of image reader libraries configured.
*/
public static List<IImageReaderLibrary> getLibraries()
{
return libraries;
}
/**
* Returns an {@link IImageReader} for specified library name and reader name. Can return
* <code>null</code> if no matching reader is found.
......@@ -138,11 +146,4 @@ public class ImageReaderFactory
libraries = newLibraries;
}
/**
* used only for testing purposes.
*/
static List<IImageReaderLibrary> getLibraries()
{
return libraries;
}
}
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