8205131: remove Runtime trace methods

Reviewed-by: lancea, rriggs, iklam
This commit is contained in:
Stuart Marks 2019-06-10 17:33:11 -07:00
parent ac1a11dfc6
commit 6758853b54
4 changed files with 2 additions and 39 deletions

View file

@ -683,32 +683,6 @@ public class Runtime {
SharedSecrets.getJavaLangRefAccess().runFinalization();
}
/**
* Not implemented, does nothing.
*
* @deprecated
* This method was intended to control instruction tracing.
* It has been superseded by JVM-specific tracing mechanisms.
* This method is subject to removal in a future version of Java SE.
*
* @param on ignored
*/
@Deprecated(since="9", forRemoval=true)
public void traceInstructions(boolean on) { }
/**
* Not implemented, does nothing.
*
* @deprecated
* This method was intended to control method call tracing.
* It has been superseded by JVM-specific tracing mechanisms.
* This method is subject to removal in a future version of Java SE.
*
* @param on ignored
*/
@Deprecated(since="9", forRemoval=true)
public void traceMethodCalls(boolean on) { }
/**
* Loads the native library specified by the filename argument. The filename
* argument must be an absolute path name.