changeset 16671:7cdd7ede912d

mx: fix comments: jrelibrary is about the JRE, not the JDK
author Gilles Duboscq <duboscq@ssw.jku.at>
date Fri, 25 Jul 2014 13:12:32 +0200
parents 4ae1d1ed5cc1
children f2cd7b3d5aef
files mxtool/mx.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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):