From 8e6c7b6c9f1b8e827fd5e5866b669503712588a3 Mon Sep 17 00:00:00 2001 From: Patrice Clement Date: Mon, 8 May 2017 22:38:02 +0200 Subject: remove obsolete URLs --- src/java-config-2 | 3 --- src/java_config_2/EnvironmentManager.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/java-config-2 b/src/java-config-2 index dfd9c24..43b888d 100755 --- a/src/java-config-2 +++ b/src/java-config-2 @@ -165,7 +165,6 @@ def list_available_vms(option, opt, value, parser): printer._print('') printer._print('%r' + 'VMs marked as Build Only may contain Security Vulnerabilities and/or be EOL.') printer._print('%r' + 'Gentoo recommends not setting these VMs as either your System or User VM.') - printer._print('%r' + 'Please see http://www.gentoo.org/doc/en/java.xml#build-only for more information') def print_environment(option, opt, value, parser): vm = manager.get_vm(value) @@ -187,7 +186,6 @@ def set_system_vm(option, opt, value, parser): printer._print("Now using %s as your generation-2 system JVM" % (vm) ) if vm.is_build_only(): printer._printWarning("%s is marked as a build-only JVM. Using this vm is not recommended. " % (vm)) - printer._printWarning("Please see http://www.gentoo.org/doc/en/java.xml#build-only for more information.") except PermissionError: fatalError("You do not have enough permissions to set the system VM!") except EnvironmentUndefinedError: @@ -211,7 +209,6 @@ def set_user_vm(option, opt, value, parser): printer._print("Now using %s as your user JVM" % (vm)) if vm.is_build_only(): printer._printWarning("%s is marked as a build-only JVM. Using this vm is not recommended. " % (vm)) - printer._printWarning("Please see http://www.gentoo.org/doc/en/java.xml#build-only for more information.") except PermissionError: fatalError("You do not have enough permissions to set the VM!") except InvalidConfigError as e: diff --git a/src/java_config_2/EnvironmentManager.py b/src/java_config_2/EnvironmentManager.py index fd44072..def2b7f 100644 --- a/src/java_config_2/EnvironmentManager.py +++ b/src/java_config_2/EnvironmentManager.py @@ -116,7 +116,7 @@ class EnvironmentManager(object): if vm: self.active_vm = vm return vm - raise InvalidVMError("Unable to determine valid vm. Please see http://www.gentoo.org/doc/en/java.xml#doc_chap4") + raise InvalidVMError("Unable to determine valid Java VM!") def set_active_vm(self, vm): self.active_vm = vm -- cgit v1.2.3-65-gdbad