diff -r 4caf88912b7f -r 3b41f1c69604 langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/MetaKeywords.java --- a/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/MetaKeywords.java Tue Mar 15 13:48:30 2016 -0700 +++ b/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/MetaKeywords.java Thu Mar 17 19:04:28 2016 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2016, 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 @@ -28,7 +28,6 @@ import java.util.*; import com.sun.javadoc.*; -import com.sun.tools.javac.jvm.Profile; import com.sun.tools.doclets.internal.toolkit.*; /** @@ -108,20 +107,6 @@ } /** - * Get the profile keywords. - * - * @param profile the profile being documented - */ - public String[] getMetaKeywords(Profile profile) { - if( configuration.keywords ) { - String profileName = profile.name; - return new String[] { profileName + " " + "profile" }; - } else { - return new String[] {}; - } - } - - /** * Get the overview keywords. */ public String[] getOverviewMetaKeywords(String title, String docTitle) {