# HG changeset patch # User Christos Kotselidis # Date 1377679463 -7200 # Node ID f49ee75d2a8b7276086c92d6c4a4499d77fcda21 # Parent 2868b55001d4b4c09dd6220412d2c9b8bab53843 Remove warning when G1 is used diff -r 2868b55001d4 -r f49ee75d2a8b src/share/vm/runtime/arguments.cpp --- a/src/share/vm/runtime/arguments.cpp Wed Aug 28 01:45:13 2013 +0200 +++ b/src/share/vm/runtime/arguments.cpp Wed Aug 28 10:44:23 2013 +0200 @@ -2203,10 +2203,8 @@ #ifdef GRAAL if (UseG1GC) { if (IgnoreUnrecognizedVMOptions) { - warning("UseG1GC is still experimental in Graal, use SerialGC instead "); FLAG_SET_CMDLINE(bool, UseG1GC, true); } else { - warning("UseG1GC is still experimental in Graal, use SerialGC instead "); status = true; } } else {