Skip to content

Commit

Permalink
Merge pull request #2363 from smillidge/PAYARA-2470
Browse files Browse the repository at this point in the history
PAYARA-2470 implement getPropertyNames method of Config correctly
  • Loading branch information
arjantijms authored Feb 4, 2018
2 parents 006ecc5 + cf99378 commit bfda3fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ public <T> Optional<T> getOptionalValue(String propertyName, Class<T> propertyTy

@Override
public Iterable<String> getPropertyNames() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
ensureDelegate();
return delegate.getPropertyNames();
}

@Override
Expand Down

0 comments on commit bfda3fc

Please sign in to comment.