comment polish

master
Robinson 2021-08-29 10:30:33 -06:00
parent eed0f59ff2
commit cffa2af85b
1 changed files with 3 additions and 2 deletions

View File

@ -36,11 +36,12 @@ internal object PidHelper {
f.isAccessible = true
return f.getInt(process).toLong()
}
// if (type == "java.lang.Win32Process" || type == "java.lang.ProcessImpl") {
// windows is not supported UNLESS we use JNA, which I do not want to do, as we want minimal dependencies.
} catch (ignored: Exception) {
}
// if (type == "java.lang.Win32Process" || type == "java.lang.ProcessImpl") {
// windows is not supported UNLESS we use JNA, which I do not want to do, as we want minimal dependencies.
return INVALID
}
}