082a38216d
Passing 'false' will pass Array or List based arguments multiple times instead of using the Delimiter. eg: compactArgumentValues = true: "-cp", "library1;library2;library3" compactArgumentValues = false: "-cp", "library1", "-cp", -"library2", "-cp", "library3" Using compactArgumentValues = false can be beneficial when the many compiler arguments are held in memory. In this case the raw arguments can intern individual string values, which is highly effective when the arguments refer to files on disk. KTIJ-24976