changeset 13854:5d455591cfbd

Ruby: fix copyright message in shell.
author Chris Seaton <chris.seaton@oracle.com>
date Sat, 01 Feb 2014 15:33:13 +0000
parents f11d3d5248b5
children bc32c9f5719b
files graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java	Fri Jan 31 16:36:02 2014 -0800
+++ b/graal/com.oracle.truffle.ruby.shell/src/com/oracle/truffle/ruby/shell/CommandLineParser.java	Sat Feb 01 15:33:13 2014 +0000
@@ -348,8 +348,13 @@
      * Print copyright information.
      */
     private static void copyright(PrintStream out) {
-        out.println("Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.");
-        out.println("ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.");
+        out.println("Copyright (c) 2013, 2014 Oracle and/or its affiliates. All rights reserved. This");
+        out.println("code is released under a tri EPL/GPL/LGPL license. You can use it,");
+        out.println("redistribute it and/or modify it under the terms of the:");
+        out.println();
+        out.println("Eclipse Public License version 1.0");
+        out.println("GNU General Public License version 2");
+        out.println("GNU Lesser General Public License version 2.1");
     }
 
 }