From: axelcl <axelcl>
Date: Wed, 27 Oct 2004 18:48:34 +0000 (+0000)
Subject: debug.core doesn't depend on native calls anymore
X-Git-Url: http://git.phpeclipse.com?hp=9ab2f5cf69a9417a3a413bae96da3f69f6e02dfe

debug.core doesn't depend on native calls anymore
---

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
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
index 731c63a..0000000
--- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/Environment.java
+++ /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) ;
-
-}