debug.core doesn't depend on native calls anymore
authoraxelcl <axelcl>
Wed, 27 Oct 2004 18:48:34 +0000 (18:48 +0000)
committeraxelcl <axelcl>
Wed, 27 Oct 2004 18:48:34 +0000 (18:48 +0000)
net.sourceforge.phpeclipse.debug.core/os/win32/x86/Environment.dll [deleted file]
net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/Environment.java [deleted file]

diff --git a/net.sourceforge.phpeclipse.debug.core/os/win32/x86/Environment.dll b/net.sourceforge.phpeclipse.debug.core/os/win32/x86/Environment.dll
deleted file mode 100644 (file)
index 62cdb62..0000000
Binary files a/net.sourceforge.phpeclipse.debug.core/os/win32/x86/Environment.dll and /dev/null differ
diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/Environment.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/Environment.java
deleted file mode 100644 (file)
index 731c63a..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
-       R M Yorston - Initial implementation
-       Vicente Fernando - www.alfersoft.com.ar
-**********************************************************************/
-package net.sourceforge.phpdt.internal.debug.core;
-
-public class Environment {
-       static {
-               java.lang.System.loadLibrary("Environment");
-       }
-
-       private Environment() {
-       }
-
-       /**
-        * Gets an environment variable. An environment variable is a
-        * system-dependent external variable that has a string value.
-        *
-        * @param       name    name of the environment variable
-        * @return      the value of the variable, or <code>null</code> if the
-        * variable is not defined.
-        */
-       public static native String getenv(String name) ;
-
-       /**
-        * Sets an environment variable. An environment variable is a
-        * system-dependent external variable that has a string value.
-        *
-        * @param       name    name of the environment variable
-        * @param       value   value to set
-        * @return      1 if variable could be set, 0 if not.
-        */
-       public static native String setenv(String name, String value) ;
-
-}