OpenJDK / jdk / jdk
changeset 56243:c0cc906cb29c
8230734: Remove default constructors from java.compiler
Reviewed-by: jjg
author | darcy |
---|---|
date | Wed, 11 Sep 2019 16:06:09 -0700 |
parents | 91bc4d6c4054 |
children | b00b4706ec0f |
files | src/java.compiler/share/classes/javax/tools/DiagnosticCollector.java src/java.compiler/share/classes/javax/tools/ToolProvider.java |
diffstat | 2 files changed, 13 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/java.compiler/share/classes/javax/tools/DiagnosticCollector.java Wed Sep 11 13:28:09 2019 -0700 +++ b/src/java.compiler/share/classes/javax/tools/DiagnosticCollector.java Wed Sep 11 16:06:09 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2019, 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 @@ -43,6 +43,11 @@ private List<Diagnostic<? extends S>> diagnostics = Collections.synchronizedList(new ArrayList<Diagnostic<? extends S>>()); + /** + * Creates a new instance of DiagnosticCollector. + */ + public DiagnosticCollector() {} + public void report(Diagnostic<? extends S> diagnostic) { Objects.requireNonNull(diagnostic); diagnostics.add(diagnostic);
--- a/src/java.compiler/share/classes/javax/tools/ToolProvider.java Wed Sep 11 13:28:09 2019 -0700 +++ b/src/java.compiler/share/classes/javax/tools/ToolProvider.java Wed Sep 11 16:06:09 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2019, 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 @@ -45,6 +45,12 @@ private static final String systemJavaCompilerName = "com.sun.tools.javac.api.JavacTool"; /** + * Do not call. + */ + @Deprecated(forRemoval=true, since="14") + public ToolProvider() {} + + /** * Returns the Java™ programming language compiler provided * with this platform. * <p>The file manager returned by calling