-XX:-UseParNewGC in java 5

If you use -XX:+UseParNewGC , Parallel YG collector will be used.But If I mention "-XX:-UseParNewGC" with -XX:+UseConcMarkSweepGC" in java 5, what type of collector would be use for YG? Please clarify.Message was edited by: tech_luver
[269 byte] By [tech_luvera] at [2007-11-27 9:09:58]
# 1
A single-threaded young gen scavenging collector will be used. This is the same young gen collector that you get if you use the option -XX:+UseSerialGC.
jxca at 2007-7-12 21:50:50 > top of Java-index,Java HotSpot Virtual Machine,Specifications...