Skip to content

Commit

Permalink
Reduce visibility as these methods are only meant to be accessed
Browse files Browse the repository at this point in the history
in tests.
  • Loading branch information
mfriedenhagen committed Feb 5, 2014
1 parent ad1c495 commit 833cd84
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -108,7 +108,7 @@ public final List<ConfigInfo> getConfigs() throws IOException {
* @throws IOException
* if one of the history entries might not be read.
*/
protected List<ConfigInfo> getSystemConfigs() throws IOException {
List<ConfigInfo> getSystemConfigs() throws IOException {
final List<ConfigInfo> configs = new ArrayList<ConfigInfo>();
if (!hasConfigurePermission()) {
return configs;
Expand All @@ -135,7 +135,7 @@ protected List<ConfigInfo> getSystemConfigs() throws IOException {
* @throws IOException
* if one of the history entries might not be read.
*/
protected List<ConfigInfo> getJobConfigs(String type) throws IOException {
List<ConfigInfo> getJobConfigs(String type) throws IOException {
if (!hasJobConfigurePermission()) {
return Collections.EMPTY_LIST;
} else {
Expand Down

0 comments on commit 833cd84

Please sign in to comment.