Skip to content

Commit

Permalink
Merge pull request #2923 from Cousjava/PAYARA-2880-microprofile-confi…
Browse files Browse the repository at this point in the history
…g-upsupported-operation

PAYARA-2880 Implemented getPropertyNames in microprofile config
  • Loading branch information
MattGill98 committed Jul 5, 2018
2 parents 9bf2423 + 700e8ee commit 5443643
Showing 1 changed file with 3 additions and 2 deletions.
@@ -1,7 +1,7 @@
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2017 Payara Foundation and/or its affiliates. All rights reserved.
* Copyright (c) 2017-2018 Payara Foundation and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
Expand Down 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 5443643

Please sign in to comment.