# HG changeset patch # User Gilles Duboscq # Date 1406286752 -7200 # Node ID 7cdd7ede912d918a305efa133a9b684d6c99e094 # Parent 4ae1d1ed5cc145bcbfa9eab8941d85299414daeb mx: fix comments: jrelibrary is about the JRE, not the JDK diff -r 4ae1d1ed5cc1 -r 7cdd7ede912d mxtool/mx.py --- a/mxtool/mx.py Fri Aug 01 11:36:08 2014 +0200 +++ b/mxtool/mx.py Fri Jul 25 13:12:32 2014 +0200 @@ -563,16 +563,16 @@ return not result """ -A library that will be provided by the JDK but may be absent. +A library that will be provided by the JRE but may be absent. Any project or normal library that depends on a missing library will be removed from the global project and library dictionaries (i.e., _projects and _libs). This mechanism exists primarily to be able to support code -that may use functionality in one JDK (e.g., Oracle JDK) -that is not present in another JDK (e.g., OpenJDK). A +that may use functionality in one JRE (e.g., Oracle JRE) +that is not present in another JRE (e.g., OpenJDK). A motivating example is the Java Flight Recorder library -found in the Oracle JDK. +found in the Oracle JRE. """ class JreLibrary(BaseLibrary): def __init__(self, suite, name, jar, optional):