Github user johnament commented on a diff in the pull request:
https://github.com/apache/incubator-tamaya/pull/11#discussion_r165550636
--- Diff:
code/api/src/main/java/org/apache/tamaya/spi/ConversionContext.java ---
@@ -145,7 +145,7 @@ public ConfigurationContext getConfigurationContext() {
/** The injection target (only set with injection used). */
private AnnotatedElement annotatedElement;
/** The ordered list of formats tried. */
- private final Set<String> supportedFormats = new HashSet<>();
+ private final List<String> supportedFormats = new ArrayList<>();
--- End diff --
would a `LinkedHashSet` work here?
---