Skip to content

Commit

Permalink
added vendor temurin in TKG
Browse files Browse the repository at this point in the history
Fixes: adoptium#535

Signed-off-by: Hajer Dahmani <[email protected]>
  • Loading branch information
Hajer Dahmani committed May 26, 2024
1 parent 39ab3b8 commit 2d4a697
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/org/openj9/envInfo/JavaInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ public String getJDKVendor() {
return "loongson";
} else if (vendorLC.contains("fujitsu")) {
return "fujitsu";
} else if (vendorLC.contains("temurin")) {
return "temurin";
} else {
System.out.println("Warning: cannot determine vendor, use System.getProperty('java.vendor')=" + vendor + " directly.\n");
return vendor;
Expand Down

0 comments on commit 2d4a697

Please sign in to comment.