diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2022-05-02 10:02:56 +0200 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2022-05-02 10:02:56 +0200 |
commit | 9362debcc5d75306a74d7ab5877bec3457d0b550 (patch) | |
tree | 584251101d90747a8a4f1a6e7dacc17eaac0cd45 | |
parent | search for the provider prior to the algorithm name (diff) | |
download | UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar.gz UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar.bz2 UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar.lz UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar.xz UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.tar.zst UIC-barcode-9362debcc5d75306a74d7ab5877bec3457d0b550.zip |
Diffstat (limited to '')
-rw-r--r-- | src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java b/src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java index 28f90e6..16cd638 100644 --- a/src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java +++ b/src/main/java/org/uic/barcode/utils/AlgorithmNameResolver.java @@ -111,6 +111,12 @@ public class AlgorithmNameResolver { String name = null;
+ if (map.get(type) != null) {
+ if (map.get(type).get(oid) != null) {
+ return map.get(type).get(oid);
+ }
+ }
+
if (provider != null) {
Service service = provider.getService(type,oid);
if (service != null) {
@@ -133,13 +139,7 @@ public class AlgorithmNameResolver { return name;
}
}
-
- if (map.get(type) != null) {
- if (map.get(type).get(oid) != null) {
- return map.get(type).get(oid);
- }
- }
-
+
//fallback if the provider did not implement OIDs
if (oid.startsWith("1.2.840.10045.4")) {
|