src/jdk.jpackage/windows/native/libapplauncher/WindowsPlatform.cpp
branchJDK-8200758-branch
changeset 57215 62db1c695d13
parent 57194 9d5fccd97421
child 57316 2891b3ae222d
--- a/src/jdk.jpackage/windows/native/libapplauncher/WindowsPlatform.cpp	Tue Feb 26 12:03:51 2019 -0500
+++ b/src/jdk.jpackage/windows/native/libapplauncher/WindowsPlatform.cpp	Tue Feb 26 12:08:20 2019 -0500
@@ -421,23 +421,6 @@
     return result;
 }
 
-#ifdef DEBUG
-bool WindowsPlatform::IsNativeDebuggerPresent() {
-    bool result = false;
-
-    if (IsDebuggerPresent() == TRUE) {
-        result = true;
-    }
-
-    return result;
-}
-
-int WindowsPlatform::GetProcessID() {
-    int pid = GetProcessId(GetCurrentProcess());
-    return pid;
-}
-#endif //DEBUG
-
 FileHandle::FileHandle(std::wstring FileName) {
     FHandle = ::CreateFile(FileName.data(), GENERIC_READ, FILE_SHARE_READ,
             NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);