--- old/test/hotspot/jtreg/runtime/appcds/AppCDSOptions.java 2018-11-16 19:18:40.518114889 -0800 +++ new/test/hotspot/jtreg/runtime/appcds/AppCDSOptions.java 2018-11-16 19:18:40.254104841 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -29,17 +29,8 @@ public class AppCDSOptions extends CDSOptions { public String appJar; - // Application classes to be archived - public String[] appClasses; - public AppCDSOptions setAppJar(String appJar) { this.appJar = appJar; return this; } - - public AppCDSOptions setAppClasses(String[] appClasses) { - this.appClasses = appClasses; - return this; - } - }