Skip to content
This repository has been archived by the owner on Feb 26, 2018. It is now read-only.

Commit

Permalink
Accept DCEVM as a valid HotSpot compatible VM
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeHegarty committed Jun 26, 2017
1 parent 472a1e7 commit ff75578
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static VirtualMachine getVirtualMachine()
}

String jvm = System.getProperty("java.vm.name").toLowerCase(Locale.ENGLISH);
if (jvm.contains("hotspot") || jvm.contains("openjdk"))
if (jvm.contains("hotspot") || jvm.contains("openjdk") || jvm.contains("dynamic code evolution"))
{
// tools jar not present, but it's a sun vm
Class<VirtualMachine> virtualMachineClass = pickVmImplementation();
Expand Down

0 comments on commit ff75578

Please sign in to comment.