src/hotspot/share/gc/shared/gcArguments.cpp
changeset 47996 0fd0f31ade3e
parent 47912 7397b5b2d3b2
child 48012 90bb2706e6b4
--- a/src/hotspot/share/gc/shared/gcArguments.cpp	Sun Nov 19 23:30:41 2017 -0500
+++ b/src/hotspot/share/gc/shared/gcArguments.cpp	Mon Nov 20 10:15:34 2017 +0100
@@ -84,13 +84,6 @@
 
 void GCArguments::initialize_flags() {
 #if INCLUDE_ALL_GCS
-  if (AssumeMP && !UseSerialGC) {
-    if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
-      warning("If the number of processors is expected to increase from one, then"
-              " you should configure the number of parallel GC threads appropriately"
-              " using -XX:ParallelGCThreads=N");
-    }
-  }
   if (MinHeapFreeRatio == 100) {
     // Keeping the heap 100% free is hard ;-) so limit it to 99%.
     FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);