src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties
author jlahoda
Mon, 21 Oct 2019 15:38:26 +0200
changeset 58713 ad69fd32778e
parent 58203 dfd434203aa0
child 59285 7799a51dbe30
permissions -rw-r--r--
8226585: Improve javac messages for using a preview API Summary: Avoiding deprecation for removal for APIs associated with preview features, the features are marked with an annotation, and errors/warnings are produced for them based on the annotation. Reviewed-by: erikj, mcimadamore, alanb Contributed-by: joe.darcy@oracle.com, jan.lahoda@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
#
54650
d9208a660094 8218152: [javac] fails and exits with no error if a bad annotation processor provided
jlahoda
parents: 54568
diff changeset
     2
# Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
#
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
#
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 5492
diff changeset
    23
# questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
#
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    26
# Messages in this file which use "placeholders" for values (e.g. {0}, {1})
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    27
# are preceded by a stylized comment describing the type of the corresponding
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    28
# values.
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    29
# The simple types currently in use are:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    30
#
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    31
# annotation        annotation compound
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    32
# boolean           true or false
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    33
# diagnostic        a sub-message; see compiler.misc.*
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    34
# fragment          similar to 'message segment', but with more specific type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    35
# modifier          a Java modifier; e.g. public, private, protected
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    36
# file              a file URL
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    37
# file object       a file URL - similar to 'file' but typically used for source/class files, hence more specific
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    38
# flag              a Flags.Flag instance
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    39
# name              a name, typically a Java identifier
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    40
# number            an integer
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    41
# option name       the name of a command line option
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    42
# path              a path
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    43
# profile           a profile name
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    44
# source            a source version number, such as 1.5, 1.6, 1.7, taken from a com.sun.tools.javac.code.Source
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    45
# source version    a source version number, such as 1.5, 1.6, 1.7, taken from a javax.lang.model.SourceVersion
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    46
# string            a general string
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    47
# symbol            the name of a declared type
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    48
# symbol kind       the kind of a symbol (i.e. method, variable)
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    49
# kind name         an informative description of the kind of a declaration; see compiler.misc.kindname.*
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    50
# target            a target version number, such as 1.5, 1.6, 1.7, taken from a com.sun.tools.javac.jvm.Target
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    51
# token             the name of a non-terminal in source code; see compiler.misc.token.*
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
    52
# tree tag          the name of a non-terminal in source code; see compiler.misc.token.*
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    53
# type              a Java type; e.g. int, X, X<T>
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
    54
# url               a URL
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    55
# object            a Java object (unspecified)
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    56
# unused            the value is not used in this message
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    57
#
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    58
# The following compound types are also used:
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    59
#
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    60
# collection of X   a comma-separated collection of items; e.g. collection of type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    61
# list of X         a comma-separated list of items; e.g. list of type
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    62
# set of X          a comma-separated set of items; e.g. set of modifier
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    63
#
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    64
# These may be composed:
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    65
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    66
# list of type or message segment
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    67
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    68
# The following type aliases are supported:
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    69
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    70
# message segment --> diagnostic or fragment
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    71
# file name --> file, path or file object
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    72
#
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    73
# Custom comments are supported in parenthesis i.e.
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    74
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    75
# number (classfile major version)
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    76
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    77
# These comments are used internally in order to generate an enum-like class declaration containing
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    78
# a method/field for each of the diagnostic keys listed here. Those methods/fields can then be used
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    79
# by javac code to build diagnostics in a type-safe fashion.
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    80
#
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
    81
# In addition, these comments are verified by the jtreg test test/tools/javac/diags/MessageInfo,
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    82
# using info derived from the collected set of examples in test/tools/javac/diags/examples.
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    83
# MessageInfo can also be run as a standalone utility providing more facilities
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    84
# for manipulating this file. For more details, see MessageInfo.java.
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    85
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
##
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
## errors
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
##
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    90
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
compiler.err.abstract.cant.be.instantiated=\
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
    {0} is abstract; cannot be instantiated
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    93
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
compiler.err.abstract.meth.cant.have.body=\
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
    abstract methods cannot have a body
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
    96
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
    97
# 0: kind name, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
compiler.err.already.annotated=\
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    {0} {1} has already been annotated
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   100
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   101
# 0: kind name, 1: symbol, 2: kind name, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
compiler.err.already.defined=\
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
   103
    {0} {1} is already defined in {2} {3}
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
   104
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   105
# 0: kind name, 1: symbol, 2: kind name, 3: kind name, 4: symbol
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
   106
compiler.err.already.defined.in.clinit=\
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
   107
    {0} {1} is already defined in {2} of {3} {4}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   108
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   109
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
compiler.err.already.defined.single.import=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   111
    a type with the same simple name is already defined by the single-type-import of {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   112
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   113
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
compiler.err.already.defined.static.single.import=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   115
    a type with the same simple name is already defined by the static single-type-import of {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   116
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   117
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
compiler.err.already.defined.this.unit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
    {0} is already defined in this compilation unit
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   120
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   121
# 0: type, 1: list of name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
compiler.err.annotation.missing.default.value=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   123
    annotation @{0} is missing a default value for the element ''{1}''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   124
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   125
# 0: type, 1: list of name
6345
7d98c298aafd 6975231: Regression test for 6881115 is failing with compiler output not matching expected output
mcimadamore
parents: 6157
diff changeset
   126
compiler.err.annotation.missing.default.value.1=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   127
    annotation @{0} is missing default values for elements {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   128
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   129
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
compiler.err.annotation.not.valid.for.type=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   131
    annotation not valid for an element of type {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   132
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
compiler.err.annotation.type.not.applicable=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    annotation type not applicable to this kind of declaration
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   135
29959
61bfc66866da 8073534: Confusing / incorrect error message regarding annotations on non-declarations
alundblad
parents: 29776
diff changeset
   136
# 0: type
61bfc66866da 8073534: Confusing / incorrect error message regarding annotations on non-declarations
alundblad
parents: 29776
diff changeset
   137
compiler.err.annotation.type.not.applicable.to.type=\
61bfc66866da 8073534: Confusing / incorrect error message regarding annotations on non-declarations
alundblad
parents: 29776
diff changeset
   138
    annotation @{0} not applicable in this type context
61bfc66866da 8073534: Confusing / incorrect error message regarding annotations on non-declarations
alundblad
parents: 29776
diff changeset
   139
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
compiler.err.annotation.value.must.be.annotation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
    annotation value must be an annotation
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   142
45753
567c159ce16f 8182747: javac crashes on bad annotation value
vromero
parents: 45750
diff changeset
   143
compiler.err.annotation.value.must.be.class.literal=\
567c159ce16f 8182747: javac crashes on bad annotation value
vromero
parents: 45750
diff changeset
   144
    annotation value must be a class literal
567c159ce16f 8182747: javac crashes on bad annotation value
vromero
parents: 45750
diff changeset
   145
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
compiler.err.annotation.value.must.be.name.value=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
    annotation values must be of the form ''name=value''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   148
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
compiler.err.annotation.value.not.allowable.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
    annotation value not of an allowable type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   151
45500
365640343c55 8181464: Invalid lambda in annotation causes NPE in Lint.augment
vromero
parents: 45413
diff changeset
   152
compiler.err.expression.not.allowable.as.annotation.value=\
365640343c55 8181464: Invalid lambda in annotation causes NPE in Lint.augment
vromero
parents: 45413
diff changeset
   153
    expression not allowed as annotation value
365640343c55 8181464: Invalid lambda in annotation causes NPE in Lint.augment
vromero
parents: 45413
diff changeset
   154
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
compiler.err.anon.class.impl.intf.no.args=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
    anonymous class implements interface; cannot have arguments
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   157
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
compiler.err.anon.class.impl.intf.no.typeargs=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
    anonymous class implements interface; cannot have type arguments
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   160
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
compiler.err.anon.class.impl.intf.no.qual.for.new=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    anonymous class implements interface; cannot have qualifier for new
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   163
23809
9405883da95f 8023945: javac wrongly allows a subclass of an anonymous class
pgovereau
parents: 23800
diff changeset
   164
compiler.err.cant.inherit.from.anon=\
9405883da95f 8023945: javac wrongly allows a subclass of an anonymous class
pgovereau
parents: 23800
diff changeset
   165
    cannot inherit from anonymous class
9405883da95f 8023945: javac wrongly allows a subclass of an anonymous class
pgovereau
parents: 23800
diff changeset
   166
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   167
# 0: symbol, 1: symbol, 2: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
compiler.err.array.and.varargs=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
    cannot declare both {0} and {1} in {2}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   170
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
compiler.err.array.dimension.missing=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
    array dimension missing
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   173
45915
1afba647cd44 8057647: javac parser needs updates to have better error recovery for error cases of new array creation with dimensions
pmuthuswamy
parents: 45867
diff changeset
   174
compiler.err.illegal.array.creation.both.dimension.and.initialization=\
1afba647cd44 8057647: javac parser needs updates to have better error recovery for error cases of new array creation with dimensions
pmuthuswamy
parents: 45867
diff changeset
   175
    array creation with both dimension expression and initialization is illegal
1afba647cd44 8057647: javac parser needs updates to have better error recovery for error cases of new array creation with dimensions
pmuthuswamy
parents: 45867
diff changeset
   176
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   177
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
compiler.err.array.req.but.found=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
    array required, but {0} found
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
compiler.err.attribute.value.must.be.constant=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   182
    element value must be a constant expression
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
   184
# 0: string (statement type)
12715
139b8354de6a 7159445: (javac) emits inaccurate diagnostics for enhanced for-loops
ksrini
parents: 12468
diff changeset
   185
compiler.err.bad.initializer=\
139b8354de6a 7159445: (javac) emits inaccurate diagnostics for enhanced for-loops
ksrini
parents: 12468
diff changeset
   186
    bad initializer for {0}
139b8354de6a 7159445: (javac) emits inaccurate diagnostics for enhanced for-loops
ksrini
parents: 12468
diff changeset
   187
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
compiler.err.break.outside.switch.loop=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
    break outside switch or loop
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   191
compiler.err.break.outside.switch.expression=\
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   192
    attempt to break out of a switch expression
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   193
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   194
compiler.err.continue.outside.switch.expression=\
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   195
    attempt to continue out of a switch expression
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   196
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   197
compiler.err.return.outside.switch.expression=\
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   198
    attempt to return out of a switch expression
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   199
52635
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   200
compiler.err.rule.completes.normally=\
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   201
    switch rule completes without providing a value\n\
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   202
    (switch rules in switch expressions must either provide a value or throw)
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   203
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   204
compiler.err.switch.expression.completes.normally=\
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   205
    switch expression completes without providing a value\n\
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   206
    (switch expressions must either provide a value or throw for all possible input values)
6938c8ef179a 8212982: Rule cases in switch expression accepted even if complete normally
jlahoda
parents: 52016
diff changeset
   207
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   208
compiler.err.no.switch.expression =\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   209
    yield outside of switch expression
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   210
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   211
compiler.err.no.switch.expression.qualify=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   212
    yield outside of switch expression\n\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   213
    (to invoke a method called yield, qualify the yield with a receiver or type name)
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   214
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   215
compiler.err.invalid.yield=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   216
    invalid use of a restricted identifier ''yield''\n\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   217
    (to invoke a method called yield, qualify the yield with a receiver or type name)
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   218
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   219
compiler.warn.invalid.yield=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   220
    ''yield'' may become a restricted identifier in a future release\n\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
   221
    (to invoke a method called yield, qualify the yield with a receiver or type name)
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   222
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   223
compiler.err.switch.expression.empty=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   224
    switch expression does not have any case clauses
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   225
55528
bad3754349aa 8226510: No compilation error when switch expression has no result expressions
jlahoda
parents: 55306
diff changeset
   226
compiler.err.switch.expression.no.result.expressions=\
bad3754349aa 8226510: No compilation error when switch expression has no result expressions
jlahoda
parents: 55306
diff changeset
   227
    switch expression does not have any result expressions
bad3754349aa 8226510: No compilation error when switch expression has no result expressions
jlahoda
parents: 55306
diff changeset
   228
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   229
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
compiler.err.call.must.be.first.stmt.in.ctor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    call to {0} must be first statement in constructor
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   232
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   233
# 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
compiler.err.cant.apply.symbol=\
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   235
    {0} {1} in {4} {5} cannot be applied to given types;\n\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   236
    required: {2}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
   237
    found:    {3}\n\
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
   238
    reason: {6}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   239
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   240
# 0: symbol kind, 1: name, 2: list of type
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   241
compiler.err.cant.apply.symbols=\
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
   242
    no suitable {0} found for {1}({2})
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   243
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   244
# 0: symbol kind, 1: name, 2: list of type or message segment, 3: list of type or message segment, 4: symbol kind, 5: type, 6: message segment
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   245
compiler.misc.cant.apply.symbol=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   246
    {0} {1} in {4} {5} cannot be applied to given types\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   247
    required: {2}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
   248
    found:    {3}\n\
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   249
    reason: {6}
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   250
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   251
# 0: symbol kind, 1: name, 2: list of type
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   252
compiler.misc.cant.apply.symbols=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   253
    no suitable {0} found for {1}({2})
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   254
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   255
# 0: kind name, 1: symbol
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   256
compiler.misc.no.abstracts=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   257
    no abstract method found in {0} {1}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   258
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   259
# 0: kind name, 1: symbol
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   260
compiler.misc.incompatible.abstracts=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   261
    multiple non-overriding abstract methods found in {0} {1}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   262
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   263
compiler.err.bad.functional.intf.anno=\
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   264
    Unexpected @FunctionalInterface annotation
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   265
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   266
# 0: message segment
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   267
compiler.err.bad.functional.intf.anno.1=\
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   268
    Unexpected @FunctionalInterface annotation\n\
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   269
    {0}
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   270
36272
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
   271
# 0: message segment
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
   272
compiler.err.anonymous.diamond.method.does.not.override.superclass=\
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
   273
    method does not override or implement a method from a supertype\n\
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
   274
    {0}
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
   275
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   276
# 0: symbol
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   277
compiler.misc.not.a.functional.intf=\
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   278
    {0} is not a functional interface
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   279
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   280
# 0: symbol, 1: message segment
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   281
compiler.misc.not.a.functional.intf.1=\
15361
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   282
    {0} is not a functional interface\n\
01f1828683e6 8005299: Add FunctionalInterface checking to javac
mcimadamore
parents: 15356
diff changeset
   283
    {1}
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   284
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   285
# 0: type, 1: kind name, 2: symbol
14723
46aa71a5e4e0 8004102: Add support for generic functional descriptors
mcimadamore
parents: 14547
diff changeset
   286
compiler.misc.invalid.generic.lambda.target=\
46aa71a5e4e0 8004102: Add support for generic functional descriptors
mcimadamore
parents: 14547
diff changeset
   287
    invalid functional descriptor for lambda expression\n\
46aa71a5e4e0 8004102: Add support for generic functional descriptors
mcimadamore
parents: 14547
diff changeset
   288
    method {0} in {1} {2} is generic
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   289
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   290
# 0: kind name, 1: symbol
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   291
compiler.misc.incompatible.descs.in.functional.intf=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   292
    incompatible function descriptors found in {0} {1}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   293
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   294
# 0: name, 1: list of type, 2: type, 3: list of type
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   295
compiler.misc.descriptor=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   296
    descriptor: {2} {0}({1})
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   297
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   298
# 0: name, 1: list of type, 2: type, 3: list of type
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   299
compiler.misc.descriptor.throws=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   300
    descriptor: {2} {0}({1}) throws {3}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   301
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   302
# 0: type
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   303
compiler.misc.no.suitable.functional.intf.inst=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   304
    cannot infer functional interface descriptor for {0}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   305
16809
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   306
# 0: message segment
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   307
compiler.misc.bad.intersection.target.for.functional.expr=\
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   308
    bad intersection type target for lambda or method reference\n\
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   309
    {0}
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   310
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   311
# 0: symbol or type
16809
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   312
compiler.misc.not.an.intf.component=\
5acfcb821d65 8010822: Intersection type cast for functional expressions does not follow spec EDR
mcimadamore
parents: 16808
diff changeset
   313
    component type {0} is not an interface
14725
65836e833f59 8002099: Add support for intersection types in cast expression
mcimadamore
parents: 14724
diff changeset
   314
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   315
# 0: kind name, 1: message segment
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   316
compiler.err.invalid.mref=\
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   317
    invalid {0} reference\n\
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   318
    {1}
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   319
50086
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
   320
# 0: kind name, 1: message segment
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   321
compiler.misc.invalid.mref=\
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   322
    invalid {0} reference\n\
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   323
    {1}
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   324
14724
b542db73539a 8004101: Add checks for method reference well-formedness
mcimadamore
parents: 14723
diff changeset
   325
compiler.misc.static.mref.with.targs=\
b542db73539a 8004101: Add checks for method reference well-formedness
mcimadamore
parents: 14723
diff changeset
   326
    parameterized qualifier on static method reference
b542db73539a 8004101: Add checks for method reference well-formedness
mcimadamore
parents: 14723
diff changeset
   327
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   328
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
compiler.err.cant.assign.val.to.final.var=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
    cannot assign a value to final variable {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   331
36713
592302b6161b 8027999: Poorly worded error message when attempting to assign to this
alundblad
parents: 36526
diff changeset
   332
compiler.err.cant.assign.val.to.this=\
592302b6161b 8027999: Poorly worded error message when attempting to assign to this
alundblad
parents: 36526
diff changeset
   333
    cannot assign to ''this''
592302b6161b 8027999: Poorly worded error message when attempting to assign to this
alundblad
parents: 36526
diff changeset
   334
13439
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   335
# 0: symbol, 1: message segment
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   336
compiler.err.cant.ref.non.effectively.final.var=\
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   337
    local variables referenced from {1} must be final or effectively final
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   338
27844
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   339
compiler.err.try.with.resources.expr.needs.var=\
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   340
    the try-with-resources resource must either be a variable declaration or an expression denoting \
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   341
a reference to a final or effectively final variable
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   342
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   343
# 0: symbol
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   344
compiler.err.try.with.resources.expr.effectively.final.var=\
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   345
    variable {0} used as a try-with-resources resource neither final nor effectively final
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
   346
13439
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   347
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   348
compiler.misc.lambda=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   349
    a lambda expression
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   350
13439
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   351
compiler.misc.inner.cls=\
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   352
    an inner class
3025d6ac1401 7175538: Integrate efectively final check with DA/DU analysis
mcimadamore
parents: 13438
diff changeset
   353
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   354
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
compiler.err.cant.deref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
    {0} cannot be dereferenced
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   357
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
compiler.err.cant.extend.intf.annotation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
    ''extends'' not allowed for @interfaces
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   360
45867
ca77ebd05a06 8074364: Update error message for incorrect annotation type declaration
pmuthuswamy
parents: 45758
diff changeset
   361
compiler.err.annotation.decl.not.allowed.here=\
ca77ebd05a06 8074364: Update error message for incorrect annotation type declaration
pmuthuswamy
parents: 45758
diff changeset
   362
    annotation type declaration not allowed here
ca77ebd05a06 8074364: Update error message for incorrect annotation type declaration
pmuthuswamy
parents: 45758
diff changeset
   363
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   364
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
compiler.err.cant.inherit.from.final=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
    cannot inherit from final {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   367
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   368
# 0: symbol or string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
compiler.err.cant.ref.before.ctor.called=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
    cannot reference {0} before supertype constructor has been called
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   371
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
compiler.err.cant.select.static.class.from.param.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
    cannot select a static class from a parameterized type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   374
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   375
# 0: symbol, 1: string, 2: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
compiler.err.cant.inherit.diff.arg=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
    {0} cannot be inherited with different arguments: <{1}> and <{2}>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   378
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
compiler.err.catch.without.try=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
    ''catch'' without ''try''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   381
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   382
# 0: kind name, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
compiler.err.clash.with.pkg.of.same.name=\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
   384
    {0} {1} clashes with package of same name
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   385
12466
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   386
compiler.err.class.not.allowed=\
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   387
    class, interface or enum declaration not allowed here
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   388
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
compiler.err.const.expr.req=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
    constant expression required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   391
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
compiler.err.cont.outside.loop=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
    continue outside of loop
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   394
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   395
# 0: symbol or type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
compiler.err.cyclic.inheritance=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
    cyclic inheritance involving {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   398
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   399
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
compiler.err.cyclic.annotation.element=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   401
    type of element {0} is cyclic
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   402
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   403
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
compiler.err.call.to.super.not.allowed.in.enum.ctor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
    call to super not allowed in enum constructor
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   406
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   407
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
compiler.err.no.superclass=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   409
    {0} has no superclass.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   411
# 0: symbol, 1: type, 2: symbol, 3: type, 4: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
compiler.err.concrete.inheritance.conflict=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    methods {0} from {1} and {2} from {3} are inherited with the same signature
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
compiler.err.default.allowed.in.intf.annotation.member=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   416
    default value only allowed in an annotation type declaration
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   417
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   418
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
compiler.err.doesnt.exist=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
    package {0} does not exist
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   421
14804
f93a8d60b9a4 8001114: Container annotation is not checked for semantic correctness
jfranck
parents: 14725
diff changeset
   422
# 0: type
f93a8d60b9a4 8001114: Container annotation is not checked for semantic correctness
jfranck
parents: 14725
diff changeset
   423
compiler.err.duplicate.annotation.invalid.repeated=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   424
    annotation {0} is not a valid repeatable annotation
14804
f93a8d60b9a4 8001114: Container annotation is not checked for semantic correctness
jfranck
parents: 14725
diff changeset
   425
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   426
# 0: name, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
compiler.err.duplicate.annotation.member.value=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   428
    duplicate element ''{0}'' in annotation @{1}.
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   429
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   430
# 0: type
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   431
compiler.err.duplicate.annotation.missing.container=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   432
    {0} is not a repeatable annotation type
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   433
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   434
# 0: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   435
compiler.err.invalid.repeatable.annotation=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   436
    duplicate annotation: {0} is annotated with an invalid @Repeatable annotation
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   437
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   438
# 0: symbol or type
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   439
compiler.err.invalid.repeatable.annotation.no.value=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   440
    {0} is not a valid @Repeatable, no value element method declared
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   441
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   442
# 0: type, 1: number
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   443
compiler.err.invalid.repeatable.annotation.multiple.values=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   444
    {0} is not a valid @Repeatable, {1} element methods named ''value'' declared
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   445
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   446
# 0: type
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   447
compiler.err.invalid.repeatable.annotation.invalid.value=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   448
    {0} is not a valid @Repeatable: invalid value element
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   449
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   450
# 0: symbol or type, 1: type, 2: type
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   451
compiler.err.invalid.repeatable.annotation.value.return=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   452
    containing annotation type ({0}) must declare an element named ''value'' of type {2}
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   453
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   454
# 0: symbol or type, 1: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   455
compiler.err.invalid.repeatable.annotation.elem.nondefault=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   456
    containing annotation type ({0}) does not have a default value for element {1}
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   457
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   458
# 0: symbol, 1: string, 2: symbol, 3: string
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   459
compiler.err.invalid.repeatable.annotation.retention=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   460
    retention of containing annotation type ({0}) is shorter than the retention of repeatable annotation type ({2})
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   461
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   462
# 0: symbol, 1: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   463
compiler.err.invalid.repeatable.annotation.not.documented=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   464
    repeatable annotation type ({1}) is @Documented while containing annotation type ({0}) is not
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   465
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   466
# 0: symbol, 1: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   467
compiler.err.invalid.repeatable.annotation.not.inherited=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   468
    repeatable annotation type ({1}) is @Inherited while containing annotation type ({0}) is not
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   469
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   470
# 0: symbol, 1: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   471
compiler.err.invalid.repeatable.annotation.incompatible.target=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   472
    containing annotation type ({0}) is applicable to more targets than repeatable annotation type ({1})
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   473
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   474
# 0: symbol
15356
cf312dc54c60 8006119: update javac to follow latest spec for repeatable annotations
jjg
parents: 14952
diff changeset
   475
compiler.err.invalid.repeatable.annotation.repeated.and.container.present=\
13689
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   476
    container {0} must not be present at the same time as the element it contains
4d519199a6aa 7151010: Add compiler support for repeating annotations
jfranck
parents: 13439
diff changeset
   477
29960
d20c04ed8ffe 8043984: Confusing (incorrect) error message on repeatable annotations
alundblad
parents: 29959
diff changeset
   478
# 0: type, 1: symbol
d20c04ed8ffe 8043984: Confusing (incorrect) error message on repeatable annotations
alundblad
parents: 29959
diff changeset
   479
compiler.err.invalid.repeatable.annotation.not.applicable=\
d20c04ed8ffe 8043984: Confusing (incorrect) error message on repeatable annotations
alundblad
parents: 29959
diff changeset
   480
    container {0} is not applicable to element {1}
d20c04ed8ffe 8043984: Confusing (incorrect) error message on repeatable annotations
alundblad
parents: 29959
diff changeset
   481
30069
5686d5e44a83 8044196: Incorrect applying of repeatable annotations with incompatible target to type parameter
alundblad
parents: 30014
diff changeset
   482
# 0: type
5686d5e44a83 8044196: Incorrect applying of repeatable annotations with incompatible target to type parameter
alundblad
parents: 30014
diff changeset
   483
compiler.err.invalid.repeatable.annotation.not.applicable.in.context=\
5686d5e44a83 8044196: Incorrect applying of repeatable annotations with incompatible target to type parameter
alundblad
parents: 30014
diff changeset
   484
    container {0} is not applicable in this type context
5686d5e44a83 8044196: Incorrect applying of repeatable annotations with incompatible target to type parameter
alundblad
parents: 30014
diff changeset
   485
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   486
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
compiler.err.duplicate.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
    duplicate class: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   489
48367
3a52333a5e57 8187487: crash with classes with same binary name
vromero
parents: 48352
diff changeset
   490
# 0: name, 1: name
3a52333a5e57 8187487: crash with classes with same binary name
vromero
parents: 48352
diff changeset
   491
compiler.err.same.binary.name=\
3a52333a5e57 8187487: crash with classes with same binary name
vromero
parents: 48352
diff changeset
   492
    classes: {0} and {1} have the same binary name
3a52333a5e57 8187487: crash with classes with same binary name
vromero
parents: 48352
diff changeset
   493
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
compiler.err.duplicate.case.label=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
    duplicate case label
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   496
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
compiler.err.duplicate.default.label=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
    duplicate default label
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
compiler.err.else.without.if=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
    ''else'' without ''if''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   502
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
compiler.err.empty.char.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
    empty character literal
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   505
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   506
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
compiler.err.encl.class.required=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
    an enclosing instance that contains {0} is required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   509
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
compiler.err.enum.annotation.must.be.enum.constant=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
    an enum annotation value must be an enum constant
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
compiler.err.enum.cant.be.instantiated=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
    enum types may not be instantiated
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   515
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
compiler.err.enum.label.must.be.unqualified.enum=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
    an enum switch case label must be the unqualified name of an enumeration constant
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   518
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
compiler.err.enum.no.subclassing=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
    classes cannot directly extend java.lang.Enum
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   521
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
compiler.err.enum.types.not.extensible=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
    enum types are not extensible
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   524
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
compiler.err.enum.no.finalize=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
    enums cannot have finalize methods
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   527
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   528
# 0: file name, 1: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
compiler.err.error.reading.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
    error reading {0}; {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   531
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   532
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
compiler.err.except.already.caught=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
    exception {0} has already been caught
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   535
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   536
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
compiler.err.except.never.thrown.in.try=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
    exception {0} is never thrown in body of corresponding try statement
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   540
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
compiler.err.final.parameter.may.not.be.assigned=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
    final parameter {0} may not be assigned
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   543
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   544
# 0: symbol
7211
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
   545
compiler.err.try.resource.may.not.be.assigned=\
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
   546
    auto-closeable resource {0} may not be assigned
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   547
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   548
# 0: symbol
5492
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5321
diff changeset
   549
compiler.err.multicatch.parameter.may.not.be.assigned=\
515e4b33b335 6943289: Project Coin: Improved Exception Handling for Java (aka 'multicatch')
mcimadamore
parents: 5321
diff changeset
   550
    multi-catch parameter {0} may not be assigned
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   551
9074
76b505d19026 7030606: Project-coin: multi-catch types should be pairwise disjoint
mcimadamore
parents: 8849
diff changeset
   552
# 0: type, 1: type
76b505d19026 7030606: Project-coin: multi-catch types should be pairwise disjoint
mcimadamore
parents: 8849
diff changeset
   553
compiler.err.multicatch.types.must.be.disjoint=\
76b505d19026 7030606: Project-coin: multi-catch types should be pairwise disjoint
mcimadamore
parents: 8849
diff changeset
   554
    Alternatives in a multi-catch statement cannot be related by subclassing\n\
76b505d19026 7030606: Project-coin: multi-catch types should be pairwise disjoint
mcimadamore
parents: 8849
diff changeset
   555
    Alternative {0} is a subclass of alternative {1}
76b505d19026 7030606: Project-coin: multi-catch types should be pairwise disjoint
mcimadamore
parents: 8849
diff changeset
   556
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
compiler.err.finally.without.try=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
    ''finally'' without ''try''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   559
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   560
# 0: type, 1: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
compiler.err.foreach.not.applicable.to.type=\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
   562
    for-each not applicable to expression type\n\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
   563
    required: {1}\n\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
   564
    found:    {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   565
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
compiler.err.fp.number.too.large=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
    floating point number too large
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   568
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
compiler.err.fp.number.too.small=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
    floating point number too small
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
compiler.err.generic.array.creation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
    generic array creation
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   574
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
compiler.err.generic.throwable=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
    a generic class may not extend java.lang.Throwable
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   578
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
compiler.err.icls.cant.have.static.decl=\
8046
376310825f60 6510286: Wording of javac error for inner classes
mcimadamore
parents: 8045
diff changeset
   580
    Illegal static declaration in inner class {0}\n\
376310825f60 6510286: Wording of javac error for inner classes
mcimadamore
parents: 8045
diff changeset
   581
    modifier \''static\'' is only allowed in constant variable declarations
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   582
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   583
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
compiler.err.illegal.char=\
14370
eefd0e6642a8 8000483: cryptic error message when source file contains hash
vromero
parents: 14369
diff changeset
   585
    illegal character: ''{0}''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   586
38511
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 38508
diff changeset
   587
# 0: string, 1: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
compiler.err.illegal.char.for.encoding=\
38511
d934635453ad 8078559: Update error message to indicate illegal character when encoding set to ascii
jlahoda
parents: 38508
diff changeset
   589
    unmappable character (0x{0}) for encoding {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   590
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   591
# 0: set of flag, 1: set of flag
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
compiler.err.illegal.combination.of.modifiers=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
    illegal combination of modifiers: {0} and {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   594
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
compiler.err.illegal.enum.static.ref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
    illegal reference to static field from initializer
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   597
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
compiler.err.illegal.esc.char=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
    illegal escape character
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   600
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
compiler.err.illegal.forward.ref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
    illegal forward reference
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   603
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   604
# 0: symbol, 1: object
15724
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14952
diff changeset
   605
compiler.err.not.in.profile=\
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14952
diff changeset
   606
    {0} is not available in profile ''{1}''
3063fb01c8a1 8004182: Add support for profiles in javac
jjg
parents: 14952
diff changeset
   607
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   608
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
compiler.warn.forward.ref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
    reference to variable ''{0}'' before it has been initialized
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   611
1045
56f6e84f7825 6676362: Spurious forward reference error with final var + instance variable initializer
mcimadamore
parents: 939
diff changeset
   612
compiler.err.illegal.self.ref=\
56f6e84f7825 6676362: Spurious forward reference error with final var + instance variable initializer
mcimadamore
parents: 939
diff changeset
   613
    self-reference in initializer
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   614
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   615
# 0: symbol
1045
56f6e84f7825 6676362: Spurious forward reference error with final var + instance variable initializer
mcimadamore
parents: 939
diff changeset
   616
compiler.warn.self.ref=\
56f6e84f7825 6676362: Spurious forward reference error with final var + instance variable initializer
mcimadamore
parents: 939
diff changeset
   617
    self-reference in initializer of variable ''{0}''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   618
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
compiler.err.illegal.generic.type.for.instof=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
    illegal generic type for instanceof
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   621
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   622
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
compiler.err.illegal.initializer.for.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
    illegal initializer for {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   625
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
compiler.err.illegal.line.end.in.char.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
    illegal line end in character literal
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   628
55263
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   629
compiler.err.illegal.text.block.open=\
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   630
    illegal text block open delimiter sequence, missing line terminator
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   631
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   632
compiler.warn.inconsistent.white.space.indentation=\
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   633
    inconsistent white space indentation
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   634
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   635
compiler.warn.trailing.white.space.will.be.removed=\
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   636
    trailing white space will be removed
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
   637
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
compiler.err.illegal.nonascii.digit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
    illegal non-ASCII digit
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   640
3895
3b3c2a1e5e8a 6860965: Project Coin: binary literals
jjg
parents: 3765
diff changeset
   641
compiler.err.illegal.underscore=\
3b3c2a1e5e8a 6860965: Project Coin: binary literals
jjg
parents: 3765
diff changeset
   642
    illegal underscore
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   643
11383
ae090403accf 4881269: improve diagnostic for ill-formed tokens
jjg
parents: 11144
diff changeset
   644
compiler.err.illegal.dot=\
ae090403accf 4881269: improve diagnostic for ill-formed tokens
jjg
parents: 11144
diff changeset
   645
    illegal ''.''
ae090403accf 4881269: improve diagnostic for ill-formed tokens
jjg
parents: 11144
diff changeset
   646
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   647
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
compiler.err.illegal.qual.not.icls=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
    illegal qualifier; {0} is not an inner class
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   650
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
compiler.err.illegal.start.of.expr=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
    illegal start of expression
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   653
12466
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   654
compiler.err.illegal.start.of.stmt=\
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   655
    illegal start of statement
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   656
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
compiler.err.illegal.start.of.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
    illegal start of type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   659
45750
15404afd36ab 8058408: Compiler should emit a clearer message for invalid parenthesized expression
sadayapalam
parents: 45744
diff changeset
   660
compiler.err.illegal.parenthesized.expression=\
15404afd36ab 8058408: Compiler should emit a clearer message for invalid parenthesized expression
sadayapalam
parents: 45744
diff changeset
   661
    illegal parenthesized expression
15404afd36ab 8058408: Compiler should emit a clearer message for invalid parenthesized expression
sadayapalam
parents: 45744
diff changeset
   662
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
compiler.err.illegal.unicode.esc=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
    illegal unicode escape
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   665
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   666
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
compiler.err.import.requires.canonical=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
    import requires canonical name for {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   669
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
compiler.err.improperly.formed.type.param.missing=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
    improperly formed type, some parameters are missing
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   672
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
compiler.err.improperly.formed.type.inner.raw.param=\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
   674
    improperly formed type, type arguments given on a raw type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   675
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   676
# 0: type, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
compiler.err.incomparable.types=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
    incomparable types: {0} and {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   679
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
   680
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
compiler.err.int.number.too.large=\
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
   682
    integer number too large
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   683
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
compiler.err.intf.annotation.members.cant.have.params=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   685
    elements in annotation type declarations cannot declare formal parameters
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   686
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   687
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
compiler.err.intf.annotation.cant.have.type.params=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   689
    annotation type {0} cannot be generic
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   690
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
compiler.err.intf.annotation.members.cant.have.type.params=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   692
    elements in annotation type declarations cannot be generic methods
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   693
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   694
# 0: symbol, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
compiler.err.intf.annotation.member.clash=\
21009
b35973e2d42e 8019461: Clean up javac diagnostics
emc
parents: 21006
diff changeset
   696
    annotation type {1} declares an element with the same name as method {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   697
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
compiler.err.intf.expected.here=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
    interface expected here
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   700
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
compiler.err.intf.meth.cant.have.body=\
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
   702
    interface abstract methods cannot have body
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   703
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
compiler.err.invalid.annotation.member.type=\
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   705
    invalid type for annotation type element
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   706
4072
70eaf9773f81 6891079: Compiler allows invalid binary literals 0b and oBL
jjg
parents: 3895
diff changeset
   707
compiler.err.invalid.binary.number=\
70eaf9773f81 6891079: Compiler allows invalid binary literals 0b and oBL
jjg
parents: 3895
diff changeset
   708
    binary numbers must contain at least one binary digit
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   709
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
compiler.err.invalid.hex.number=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
    hexadecimal numbers must contain at least one hexadecimal digit
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   712
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
compiler.err.invalid.meth.decl.ret.type.req=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
    invalid method declaration; return type required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   715
8047
c7f08cdb5c3c 6569633: Varargs: parser error when varargs element type is an array
mcimadamore
parents: 8046
diff changeset
   716
compiler.err.varargs.and.old.array.syntax=\
c7f08cdb5c3c 6569633: Varargs: parser error when varargs element type is an array
mcimadamore
parents: 8046
diff changeset
   717
    legacy array notation not allowed on variable-arity parameter
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   719
compiler.err.varargs.and.receiver =\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   720
    varargs notation not allowed on receiver parameter
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   721
22701
67811024e8b4 8030091: Request to update error messages from javac for negative varargs test cases
jlahoda
parents: 21712
diff changeset
   722
compiler.err.varargs.must.be.last =\
67811024e8b4 8030091: Request to update error messages from javac for negative varargs test cases
jlahoda
parents: 21712
diff changeset
   723
    varargs parameter must be the last parameter
67811024e8b4 8030091: Request to update error messages from javac for negative varargs test cases
jlahoda
parents: 21712
diff changeset
   724
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   725
compiler.err.array.and.receiver =\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   726
    legacy array notation not allowed on receiver parameter
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
   727
50568
0f807f558017 8203813: javac accepts an illegal name as a receiver parameter name
bsrbnd
parents: 50250
diff changeset
   728
compiler.err.wrong.receiver =\
0f807f558017 8203813: javac accepts an illegal name as a receiver parameter name
bsrbnd
parents: 50250
diff changeset
   729
    wrong receiver parameter name
0f807f558017 8203813: javac accepts an illegal name as a receiver parameter name
bsrbnd
parents: 50250
diff changeset
   730
12466
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   731
compiler.err.variable.not.allowed=\
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   732
    variable declaration not allowed here
08863ee323df 7156633: (javac) incorrect errors when parsing variable declaration in block statements.
ksrini
parents: 12336
diff changeset
   733
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   734
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
compiler.err.label.already.in.use=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
    label {0} already in use
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   737
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   738
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
compiler.err.local.var.accessed.from.icls.needs.final=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
    local variable {0} is accessed from within inner class; needs to be declared final
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   741
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
compiler.err.local.enum=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
    enum types must not be local
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   744
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
compiler.err.cannot.create.array.with.type.arguments=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
    cannot create array with type arguments
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
10199
48bd09ecc88a 7057297: Project Coin: diamond erroneously accepts in array initializer expressions
mcimadamore
parents: 10186
diff changeset
   748
compiler.err.cannot.create.array.with.diamond=\
48bd09ecc88a 7057297: Project Coin: diamond erroneously accepts in array initializer expressions
mcimadamore
parents: 10186
diff changeset
   749
    cannot create array with ''<>''
48bd09ecc88a 7057297: Project Coin: diamond erroneously accepts in array initializer expressions
mcimadamore
parents: 10186
diff changeset
   750
40501
8455b59aa04a 8157519: Error messages when compiling a malformed module-info.java confusing
sadayapalam
parents: 40313
diff changeset
   751
compiler.err.invalid.module.directive=\
8455b59aa04a 8157519: Error messages when compiling a malformed module-info.java confusing
sadayapalam
parents: 40313
diff changeset
   752
  module directive keyword or ''}'' expected
8455b59aa04a 8157519: Error messages when compiling a malformed module-info.java confusing
sadayapalam
parents: 40313
diff changeset
   753
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
#
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
# limits.  We don't give the limits in the diagnostic because we expect
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
# them to change, yet we want to use the same diagnostic.  These are all
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
# detected during code generation.
06bc494ca11e Initial load
duke
parents:
diff changeset
   758
#
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
compiler.err.limit.code=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
    code too large
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   761
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
compiler.err.limit.code.too.large.for.try.stmt=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
    code too large for try statement
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   764
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
compiler.err.limit.dimensions=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
    array type has too many dimensions
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   767
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
compiler.err.limit.locals=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
    too many local variables
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   770
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
compiler.err.limit.parameters=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
    too many parameters
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   773
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   774
compiler.err.limit.pool=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
    too many constants
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   776
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   777
compiler.err.limit.pool.in.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
    too many constants in class {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   779
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
compiler.err.limit.stack=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   781
    code requires too much stack
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   782
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   783
compiler.err.limit.string=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
    constant string too long
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   785
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   786
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   787
compiler.err.limit.string.overflow=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   788
    UTF8 representation for string \"{0}...\" is too long for the constant pool
06bc494ca11e Initial load
duke
parents:
diff changeset
   789
06bc494ca11e Initial load
duke
parents:
diff changeset
   790
compiler.err.malformed.fp.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   791
    malformed floating point literal
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   792
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   793
compiler.err.method.does.not.override.superclass=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   794
    method does not override or implement a method from a supertype
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   795
45758
b2a0122861f5 8068836: Error message should be updated when Override is used with static methods
sadayapalam
parents: 45756
diff changeset
   796
compiler.err.static.methods.cannot.be.annotated.with.override=\
b2a0122861f5 8068836: Error message should be updated when Override is used with static methods
sadayapalam
parents: 45756
diff changeset
   797
    static methods cannot be annotated with @Override
b2a0122861f5 8068836: Error message should be updated when Override is used with static methods
sadayapalam
parents: 45756
diff changeset
   798
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   799
compiler.err.missing.meth.body.or.decl.abstract=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   800
    missing method body, or declare abstract
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   801
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   802
compiler.err.missing.ret.stmt=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   803
    missing return statement
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   804
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   805
# 0: type
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   806
compiler.misc.missing.ret.val=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   807
    missing return value
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   808
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
   809
compiler.misc.unexpected.ret.val=\
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
   810
    unexpected return value
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   811
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   812
# 0: set of flag
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   813
compiler.err.mod.not.allowed.here=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   814
    modifier {0} not allowed here
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   815
48427
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
   816
# 0: name
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
   817
compiler.err.modifier.not.allowed.here=\
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
   818
    modifier {0} not allowed here
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
   819
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   820
compiler.err.intf.not.allowed.here=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
    interface not allowed here
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   822
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   823
compiler.err.enums.must.be.static=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
    enum declarations allowed only in static contexts
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   826
# 0: symbol, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   827
compiler.err.name.clash.same.erasure=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   828
    name clash: {0} and {1} have the same erasure
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   829
45413
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   830
# 0: name, 1: list of type, 2: symbol, 3: name, 4: list of type, 5: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   831
compiler.err.name.clash.same.erasure.no.override=\
45413
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   832
    name clash: {0}({1}) in {2} and {3}({4}) in {5} have the same erasure, yet neither overrides the other
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   833
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   834
# 0: string, 1: name, 2: name, 3: list of type, 4: symbol, 5: name, 6: list of type, 7: symbol
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   835
compiler.err.name.clash.same.erasure.no.override.1=\
45413
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   836
    name clash: {0} {1} has two methods with the same erasure, yet neither overrides the other\n\
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   837
    first method:  {2}({3}) in {4}\n\
75202c6b2c35 7170058: Confusing error message from javac when overriding a method from a raw supertype
vromero
parents: 45156
diff changeset
   838
    second method: {5}({6}) in {7}
8242
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   839
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   840
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   841
compiler.err.name.clash.same.erasure.no.hide=\
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   842
    name clash: {0} in {1} and {2} in {3} have the same erasure, yet neither hides the other
3873b4aaf4a8 7007615: java_util/generics/phase2/NameClashTest02 fails since jdk7/pit/b123.
mcimadamore
parents: 8234
diff changeset
   843
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
compiler.err.name.reserved.for.internal.use=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
    {0} is reserved for internal use
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   846
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
compiler.err.native.meth.cant.have.body=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
    native methods cannot have a body
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   849
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
   850
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14054
diff changeset
   851
# 0: message segment
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14054
diff changeset
   852
compiler.misc.incompatible.type.in.conditional=\
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   853
    bad type in conditional expression\n\
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
   854
    {0}
14057
b4b0377b8dba 7177387: Add target-typing support in method context
mcimadamore
parents: 14054
diff changeset
   855
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
   856
compiler.misc.conditional.target.cant.be.void=\
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
   857
    target-type for conditional expression cannot be void
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
   858
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   859
compiler.misc.switch.expression.target.cant.be.void=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   860
    target-type for switch expression cannot be void
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   861
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   862
# 0: message segment
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   863
compiler.misc.incompatible.type.in.switch.expression=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   864
    bad type in switch expression\n\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   865
    {0}
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
   866
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   867
# 0: message segment
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   868
compiler.misc.incompatible.ret.type.in.lambda=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   869
    bad return type in lambda expression\n\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   870
    {0}
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   871
38508
03c87ceca5fd 8153884: Expression lambda erroneously compatible with void-returning descriptor
mcimadamore
parents: 37854
diff changeset
   872
compiler.misc.stat.expr.expected=\
03c87ceca5fd 8153884: Expression lambda erroneously compatible with void-returning descriptor
mcimadamore
parents: 37854
diff changeset
   873
    lambda body is not compatible with a void functional interface\n\
03c87ceca5fd 8153884: Expression lambda erroneously compatible with void-returning descriptor
mcimadamore
parents: 37854
diff changeset
   874
    (consider using a block lambda body, or use a statement expression instead)
03c87ceca5fd 8153884: Expression lambda erroneously compatible with void-returning descriptor
mcimadamore
parents: 37854
diff changeset
   875
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   876
# 0: message segment
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   877
compiler.misc.incompatible.ret.type.in.mref=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   878
    bad return type in method reference\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   879
    {0}
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   880
24066
1dfb66929538 8029718: Should always use lambda body structure to disambiguate overload resolution
vromero
parents: 23809
diff changeset
   881
compiler.err.lambda.body.neither.value.nor.void.compatible=\
1dfb66929538 8029718: Should always use lambda body structure to disambiguate overload resolution
vromero
parents: 23809
diff changeset
   882
    lambda body is neither value nor void compatible
1dfb66929538 8029718: Should always use lambda body structure to disambiguate overload resolution
vromero
parents: 23809
diff changeset
   883
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   884
# 0: list of type
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   885
compiler.err.incompatible.thrown.types.in.mref=\
45756
67f4f8f4d34a 8182047: javac compile error on type-parameter-exceptions in lambda expressions
vromero
parents: 45753
diff changeset
   886
    incompatible thrown types {0} in functional expression
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   887
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   888
compiler.misc.incompatible.arg.types.in.lambda=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   889
    incompatible parameter types in lambda expression
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
   890
16294
0c291a3cd60d 8007462: Fix provisional applicability for method references
mcimadamore
parents: 15385
diff changeset
   891
compiler.misc.incompatible.arg.types.in.mref=\
0c291a3cd60d 8007462: Fix provisional applicability for method references
mcimadamore
parents: 15385
diff changeset
   892
    incompatible parameter types in method reference
0c291a3cd60d 8007462: Fix provisional applicability for method references
mcimadamore
parents: 15385
diff changeset
   893
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
compiler.err.new.not.allowed.in.annotation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
    ''new'' not allowed in an annotation
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   896
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   897
# 0: name, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
compiler.err.no.annotation.member=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
    no annotation member {0} in {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   900
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   901
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
compiler.err.no.encl.instance.of.type.in.scope=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
    no enclosing instance of type {0} is in scope
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   904
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
compiler.err.no.intf.expected.here=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
    no interface expected here
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   907
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   908
compiler.err.no.match.entry=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   909
    {0} has no match in entry in {1}; required {2}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   910
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
   911
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
compiler.err.not.annotation.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
    {0} is not an annotation type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   914
43138
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   915
# 0: symbol, 1: symbol, 2: message segment
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
   916
compiler.err.not.def.access.package.cant.access=\
43138
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   917
    {0} is not visible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   918
    ({2})
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   919
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   920
# 0: symbol, 1: symbol, 2: message segment
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   921
compiler.misc.not.def.access.package.cant.access=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   922
    {0} is not visible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   923
    ({2})
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   924
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   925
# 0: symbol, 1: message segment
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   926
compiler.err.package.not.visible=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   927
    package {0} is not visible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   928
    ({1})
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   929
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   930
# 0: symbol, 1: message segment
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   931
compiler.misc.package.not.visible=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   932
    package {0} is not visible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   933
    ({1})
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   934
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   935
# {0} - current module
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   936
# {1} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   937
# {2} - module in which {1} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   938
# 0: symbol, 1: symbol, 2: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   939
compiler.misc.not.def.access.does.not.read=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   940
    package {1} is declared in module {2}, but module {0} does not read it
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   941
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   942
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   943
# {1} - module in which {0} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   944
# 0: symbol, 1: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   945
compiler.misc.not.def.access.does.not.read.from.unnamed=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   946
    package {0} is declared in module {1}, which is not in the module graph
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   947
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   948
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   949
# {1} - current module
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   950
# 0: symbol, 1: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   951
compiler.misc.not.def.access.does.not.read.unnamed=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   952
    package {0} is declared in the unnamed module, but module {0} does not read it
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   953
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   954
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   955
# {1} - module in which {0} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   956
# 0: symbol, 1: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   957
compiler.misc.not.def.access.not.exported=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   958
    package {0} is declared in module {1}, which does not export it
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   959
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   960
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   961
# {1} - module in which {0} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   962
# 0: symbol, 1: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   963
compiler.misc.not.def.access.not.exported.from.unnamed=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   964
    package {0} is declared in module {1}, which does not export it
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   965
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   966
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   967
# {1} - module in which {0} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   968
# {2} - current module
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   969
# 0: symbol, 1: symbol, 2: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   970
compiler.misc.not.def.access.not.exported.to.module=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   971
    package {0} is declared in module {1}, which does not export it to module {2}
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   972
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   973
# {0} - package in which the invisible class is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   974
# {1} - module in which {0} is declared
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   975
# 0: symbol, 1: symbol
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   976
compiler.misc.not.def.access.not.exported.to.module.from.unnamed=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   977
    package {0} is declared in module {1}, which does not export it to the unnamed module
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
   978
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
   979
# 0: symbol, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
compiler.err.not.def.access.class.intf.cant.access=\
43138
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   981
    {1}.{0} is defined in an inaccessible class or interface
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   982
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
   983
# 0: symbol, 1: symbol
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   984
compiler.misc.not.def.access.class.intf.cant.access=\
43138
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   985
    {1}.{0} is defined in an inaccessible class or interface
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   986
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   987
# 0: symbol, 1: symbol, 2: symbol, 3: message segment
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   988
compiler.err.not.def.access.class.intf.cant.access.reason=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   989
    {1}.{0} in package {2} is not accessible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   990
    ({3})
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   991
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   992
# 0: symbol, 1: symbol, 2: symbol, 3: message segment
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   993
compiler.misc.not.def.access.class.intf.cant.access.reason=\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   994
    {1}.{0} in package {2} is not accessible\n\
680d378b9d64 8169197: Improve error reporting for compiling against unexported package
jlahoda
parents: 43027
diff changeset
   995
    ({3})
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   996
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   997
# 0: symbol, 1: list of type, 2: type
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   998
compiler.misc.cant.access.inner.cls.constr=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
   999
    cannot access constructor {0}({1})\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1000
    an enclosing instance of type {2} is not in scope
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1001
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1002
# 0: symbol, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
compiler.err.not.def.public.cant.access=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
    {0} is not public in {1}; cannot be accessed from outside package
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1005
16328
8b9eb42167f6 8009129: Illegal access error when calling method reference
mcimadamore
parents: 16323
diff changeset
  1006
# 0: symbol, 1: symbol
43865
532c50fea155 8174243: incorrect error message for nested service provider
vromero
parents: 43772
diff changeset
  1007
compiler.err.not.def.public=\
532c50fea155 8174243: incorrect error message for nested service provider
vromero
parents: 43772
diff changeset
  1008
    {0} is not public in {1}
532c50fea155 8174243: incorrect error message for nested service provider
vromero
parents: 43772
diff changeset
  1009
532c50fea155 8174243: incorrect error message for nested service provider
vromero
parents: 43772
diff changeset
  1010
# 0: symbol, 1: symbol
16328
8b9eb42167f6 8009129: Illegal access error when calling method reference
mcimadamore
parents: 16323
diff changeset
  1011
compiler.misc.not.def.public.cant.access=\
8b9eb42167f6 8009129: Illegal access error when calling method reference
mcimadamore
parents: 16323
diff changeset
  1012
    {0} is not public in {1}; cannot be accessed from outside package
8b9eb42167f6 8009129: Illegal access error when calling method reference
mcimadamore
parents: 16323
diff changeset
  1013
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1014
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
compiler.err.not.loop.label=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1016
    not a loop label: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1017
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
compiler.err.not.stmt=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
    not a statement
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1020
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1021
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
compiler.err.not.encl.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
    not an enclosing class: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
29051
7244db2ab176 8071241: Investigate alternate strategy for type-checking operators
mcimadamore
parents: 28456
diff changeset
  1025
# 0: name, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
compiler.err.operator.cant.be.applied=\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  1027
    bad operand type {1} for unary operator ''{0}''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1028
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1029
# 0: name, 1: type, 2: type
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  1030
compiler.err.operator.cant.be.applied.1=\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  1031
    bad operand types for binary operator ''{0}''\n\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  1032
    first type:  {1}\n\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  1033
    second type: {2}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
compiler.err.pkg.annotations.sb.in.package-info.java=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
    package annotations should be in file package-info.java
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1037
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1038
compiler.err.no.pkg.in.module-info.java=\
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44576
diff changeset
  1039
    package declarations not allowed in file module-info.java
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1040
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1041
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
compiler.err.pkg.clashes.with.class.of.same.name=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
    package {0} clashes with class of same name
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
1996
c855318a4b03 6595666: fix -Werror
jjg
parents: 1538
diff changeset
  1045
compiler.err.warnings.and.werror=\
c855318a4b03 6595666: fix -Werror
jjg
parents: 1538
diff changeset
  1046
    warnings found and -Werror specified
c855318a4b03 6595666: fix -Werror
jjg
parents: 1538
diff changeset
  1047
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1048
# Errors related to annotation processing
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1050
# 0: symbol, 1: message segment, 2: string (stack-trace)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
compiler.err.proc.cant.access=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1052
    cannot access {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1053
    {1}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1054
    Consult the following stack trace for details.\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1055
    {2}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1056
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1057
# 0: symbol, 1: message segment
9077
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  1058
compiler.err.proc.cant.access.1=\
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  1059
    cannot access {0}\n\
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  1060
    {1}
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  1061
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1062
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1063
compiler.err.proc.cant.find.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1064
    Could not find class file for ''{0}''.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
54650
d9208a660094 8218152: [javac] fails and exits with no error if a bad annotation processor provided
jlahoda
parents: 54568
diff changeset
  1066
# 0: string
d9208a660094 8218152: [javac] fails and exits with no error if a bad annotation processor provided
jlahoda
parents: 54568
diff changeset
  1067
compiler.err.proc.cant.load.class=\
d9208a660094 8218152: [javac] fails and exits with no error if a bad annotation processor provided
jlahoda
parents: 54568
diff changeset
  1068
    Could not load processor class file due to ''{0}''.
d9208a660094 8218152: [javac] fails and exits with no error if a bad annotation processor provided
jlahoda
parents: 54568
diff changeset
  1069
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
# Print a client-generated error message; assumed to be localized, no translation required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1071
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
compiler.err.proc.messager=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
    {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1075
# 0: string
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1076
compiler.misc.exception.message=\
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1077
    {0}
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1078
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1079
compiler.misc.user.selected.completion.failure=\
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1080
    user-selected completion failure by class name
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1081
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1082
# 0: collection of string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1083
compiler.err.proc.no.explicit.annotation.processing.requested=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
    Class names, ''{0}'', are only accepted if annotation processing is explicitly requested
06bc494ca11e Initial load
duke
parents:
diff changeset
  1085
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
compiler.err.proc.no.service=\
10186
31a86b7e18ca 6575445: Update annotation processor to only use java.util.ServiceLoader
darcy
parents: 9604
diff changeset
  1087
    A ServiceLoader was not usable and is required for annotation processing.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1089
# 0: string, 1: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
compiler.err.proc.processor.bad.option.name=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
    Bad option name ''{0}'' provided by processor ''{1}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1093
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1094
compiler.err.proc.processor.cant.instantiate=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
    Could not instantiate an instance of processor ''{0}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1097
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
compiler.err.proc.processor.not.found=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
    Annotation processor ''{0}'' not found
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1101
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
compiler.err.proc.processor.wrong.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
    Annotation processor ''{0}'' does not implement javax.annotation.processing.Processor
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
compiler.err.proc.service.problem=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
    Error creating a service loader to load Processors.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1108
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
compiler.err.proc.bad.config.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
    Bad service configuration file, or exception thrown while constructing Processor object: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
06bc494ca11e Initial load
duke
parents:
diff changeset
  1112
compiler.err.proc.cant.create.loader=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
    Could not create class loader for annotation processors: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1115
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
compiler.err.qualified.new.of.static.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
    qualified new of static class
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
06bc494ca11e Initial load
duke
parents:
diff changeset
  1119
compiler.err.recursive.ctor.invocation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1120
    recursive constructor invocation
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1121
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1122
# 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1123
compiler.err.ref.ambiguous=\
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1124
    reference to {0} is ambiguous\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1125
    both {1} {2} in {3} and {4} {5} in {6} match
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1126
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1127
# 0: name, 1: symbol kind, 2: symbol, 3: symbol, 4: symbol kind, 5: symbol, 6: symbol
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1128
compiler.misc.ref.ambiguous=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1129
    reference to {0} is ambiguous\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  1130
    both {1} {2} in {3} and {4} {5} in {6} match
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1131
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1132
compiler.err.repeated.annotation.target=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1133
    repeated annotation target
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1134
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1135
compiler.err.repeated.interface=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1136
    repeated interface
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1137
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1138
compiler.err.repeated.modifier=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1139
    repeated modifier
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1140
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1141
# 0: symbol, 1: set of modifier, 2: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1142
compiler.err.report.access=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1143
    {0} has {1} access in {2}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1144
19129
b1409ae675f8 8020843: javac crashes on accessibility check with method reference with typevar receiver
mcimadamore
parents: 19122
diff changeset
  1145
# 0: symbol, 1: set of modifier, 2: symbol
b1409ae675f8 8020843: javac crashes on accessibility check with method reference with typevar receiver
mcimadamore
parents: 19122
diff changeset
  1146
compiler.misc.report.access=\
b1409ae675f8 8020843: javac crashes on accessibility check with method reference with typevar receiver
mcimadamore
parents: 19122
diff changeset
  1147
    {0} has {1} access in {2}
b1409ae675f8 8020843: javac crashes on accessibility check with method reference with typevar receiver
mcimadamore
parents: 19122
diff changeset
  1148
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1149
compiler.err.ret.outside.meth=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1150
    return outside method
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
compiler.err.signature.doesnt.match.supertype=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
    signature does not match {0}; incompatible supertype
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1154
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1155
compiler.err.signature.doesnt.match.intf=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1156
    signature does not match {0}; incompatible interfaces
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1157
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1158
# 0: symbol, 1: symbol, 2: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1159
compiler.err.does.not.override.abstract=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1160
    {0} is not abstract and does not override abstract method {1} in {2}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1161
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1162
# 0: file object
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1163
compiler.err.source.cant.overwrite.input.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1164
    error writing source; cannot overwrite input file {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1165
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1166
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1167
compiler.err.stack.sim.error=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1168
    Internal error: stack sim error on {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1169
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1170
compiler.err.static.imp.only.classes.and.interfaces=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1171
    static import only from classes and interfaces
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1172
4142
bd950c8f4fb3 6827009: Project Coin: Strings in Switch
darcy
parents: 4072
diff changeset
  1173
compiler.err.string.const.req=\
bd950c8f4fb3 6827009: Project Coin: Strings in Switch
darcy
parents: 4072
diff changeset
  1174
    constant string expression required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1175
50213
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1176
# 0: symbol, 1: fragment
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1177
compiler.err.cannot.generate.class=\
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1178
    error while generating class {0}\n\
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1179
    ({1})
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1180
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1181
# 0: symbol, 1: symbol
50213
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1182
compiler.misc.synthetic.name.conflict=\
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1183
    the symbol {0} conflicts with a compiler-synthesized symbol in {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1184
50213
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1185
# 0: symbol, 1: type
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1186
compiler.misc.illegal.signature=\
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1187
    illegal signature attribute for type {1}
3085969bdf91 8203436: javac should fail early when emitting illegal signature attributes
mcimadamore
parents: 50086
diff changeset
  1188
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1189
compiler.err.throws.not.allowed.in.intf.annotation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1190
    throws clause not allowed in @interface members
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1191
6148
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 6145
diff changeset
  1192
compiler.err.try.without.catch.finally.or.resource.decls=\
3a8158299c51 6911256: Project Coin: Support Automatic Resource Management (ARM) blocks in the compiler
darcy
parents: 6145
diff changeset
  1193
    ''try'' without ''catch'', ''finally'' or resource declarations
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1194
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1195
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1196
compiler.err.type.doesnt.take.params=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1197
    type {0} does not take parameters
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1198
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1199
compiler.err.type.var.cant.be.deref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1200
    cannot select from a type variable
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1201
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1202
compiler.err.type.var.may.not.be.followed.by.other.bounds=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1203
    a type variable may not be followed by other bounds
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1204
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
compiler.err.type.var.more.than.once=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1206
    type variable {0} occurs more than once in result type of {1}; cannot be left uninstantiated
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1207
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1208
compiler.err.type.var.more.than.once.in.result=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1209
    type variable {0} occurs more than once in type of {1}; cannot be left uninstantiated
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1210
48352
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1211
# 0: type, 1: type, 2: fragment
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1212
compiler.err.types.incompatible=\
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1213
    types {0} and {1} are incompatible;\n\
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1214
    {2}
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1215
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1216
# 0: name, 1: list of type
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1217
compiler.misc.incompatible.diff.ret=\
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1218
    both define {0}({1}), but with unrelated return types
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1219
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  1220
# 0: kind name, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
48352
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1221
compiler.misc.incompatible.unrelated.defaults=\
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1222
    {0} {1} inherits unrelated defaults for {2}({3}) from types {4} and {5}
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1223
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  1224
# 0: kind name, 1: type, 2: name, 3: list of type, 4: symbol, 5: symbol
48352
9b700a5c4381 8057650: uniform error diagnostics for inconsistent inherited method signatures
mcimadamore
parents: 48054
diff changeset
  1225
compiler.misc.incompatible.abstract.default=\
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1226
    {0} {1} inherits abstract and default for {2}({3}) from types {4} and {5}
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1227
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  1228
# 0: name, 1: kind name, 2: symbol
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1229
compiler.err.default.overrides.object.member=\
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1230
    default method {0} in {1} {2} overrides a member of java.lang.Object
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1231
15377
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15367
diff changeset
  1232
# 0: type
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15367
diff changeset
  1233
compiler.err.illegal.static.intf.meth.call=\
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15367
diff changeset
  1234
    illegal static interface method call\n\
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15367
diff changeset
  1235
    the receiver expression should be replaced with the type qualifier ''{0}''
515846bb6637 8005166: Add support for static interface methods
mcimadamore
parents: 15367
diff changeset
  1236
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1237
# 0: symbol or type, 1: message segment
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1238
compiler.err.illegal.default.super.call=\
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1239
    bad type qualifier {0} in default super call\n\
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1240
    {1}
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1241
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1242
# 0: symbol, 1: type
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1243
compiler.misc.overridden.default=\
14547
86d8d242b0c4 8003280: Add lambda tests
mcimadamore
parents: 14541
diff changeset
  1244
    method {0} is overridden in {1}
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1245
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  1246
# 0: symbol, 1: type or symbol
14443
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1247
compiler.misc.redundant.supertype=\
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1248
    redundant interface {0} is extended by {1}
91c05eb19277 7192246: Add type-checking support for default methods
mcimadamore
parents: 14370
diff changeset
  1249
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1250
compiler.err.unclosed.char.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1251
    unclosed character literal
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1252
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1253
compiler.err.unclosed.comment=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1254
    unclosed comment
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1255
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1256
compiler.err.unclosed.str.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1257
    unclosed string literal
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1258
55263
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  1259
compiler.err.unclosed.text.block=\
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  1260
    unclosed text block
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  1261
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1262
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1263
compiler.err.unsupported.encoding=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1264
    unsupported encoding: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1265
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1266
compiler.err.io.exception=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1267
    error reading source file: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1268
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1269
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1270
compiler.err.undef.label=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1271
    undefined label: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1272
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1273
# 0: name
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1274
compiler.err.illegal.ref.to.restricted.type=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1275
    illegal reference to restricted type ''{0}''
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1276
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1277
# 0: name
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1278
compiler.warn.illegal.ref.to.restricted.type=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1279
    illegal reference to restricted type ''{0}''
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1280
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1281
# 0: name, 1: source
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1282
compiler.err.restricted.type.not.allowed=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1283
    ''{0}'' not allowed here\n\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1284
    as of release {1}, ''{0}'' is a restricted type name and cannot be used for type declarations
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1285
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1286
# 0: name, 1: source
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1287
compiler.warn.restricted.type.not.allowed=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1288
    as of release {1}, ''{0}'' is a restricted type name and cannot be used for type declarations or as the element type of an array
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1289
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1290
# 0: name, 1: source
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1291
compiler.warn.restricted.type.not.allowed.preview=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1292
    ''{0}'' may become a restricted type name in a future release and may be unusable for type declarations or as the element type of an array
48551
9cf44c40aa35 8189146: Have use of "var" in 9 and earlier source versions issue a warning for type declarations
darcy
parents: 48498
diff changeset
  1293
47268
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1294
# 0: name (variable), 1: message segment
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1295
compiler.err.cant.infer.local.var.type=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1296
    cannot infer type for local variable {0}\n\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1297
    ({1})
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1298
55306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1299
# 0: name
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1300
compiler.err.restricted.type.not.allowed.here=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1301
    ''{0}'' is not allowed here
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1302
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1303
# 0: name
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1304
compiler.err.restricted.type.not.allowed.array=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1305
    ''{0}'' is not allowed as an element type of an array
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1306
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1307
# 0: name
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1308
compiler.err.restricted.type.not.allowed.compound=\
ea43db53de91 8223305: Compiler support for Switch Expressions
jlahoda
parents: 55263
diff changeset
  1309
    ''{0}'' is not allowed in a compound declaration
47268
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1310
48935
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1311
# 0: fragment
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1312
compiler.err.invalid.lambda.parameter.declaration=\
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1313
    invalid lambda parameter declaration\n\
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1314
    ({0})
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1315
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1316
compiler.misc.implicit.and.explicit.not.allowed=\
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1317
    cannot mix implicitly-typed and explicitly-typed parameters
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1318
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1319
compiler.misc.var.and.explicit.not.allowed=\
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1320
    cannot mix ''var'' and explicitly-typed parameters
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1321
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1322
compiler.misc.var.and.implicit.not.allowed=\
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1323
    cannot mix ''var'' and implicitly-typed parameters
03ae177c26b0 8198512: compiler support for local-variable syntax for lambda parameters
vromero
parents: 48926
diff changeset
  1324
47268
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1325
compiler.misc.local.cant.infer.null=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1326
    variable initializer is ''null''
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1327
47934
6373d9a0ad82 8191834: Assigning a void expression to a "var" crashes the compiler
mcimadamore
parents: 47485
diff changeset
  1328
compiler.misc.local.cant.infer.void=\
6373d9a0ad82 8191834: Assigning a void expression to a "var" crashes the compiler
mcimadamore
parents: 47485
diff changeset
  1329
    variable initializer is ''void''
6373d9a0ad82 8191834: Assigning a void expression to a "var" crashes the compiler
mcimadamore
parents: 47485
diff changeset
  1330
47268
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1331
compiler.misc.local.missing.init=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1332
    cannot use ''var'' on variable without initializer
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1333
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1334
compiler.misc.local.lambda.missing.target=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1335
    lambda expression needs an explicit target-type
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1336
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1337
compiler.misc.local.mref.missing.target=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1338
    method reference needs an explicit target-type
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1339
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1340
compiler.misc.local.array.missing.target=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1341
    array initializer needs an explicit target-type
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1342
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1343
compiler.misc.local.self.ref=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1344
    cannot use ''var'' on self-referencing variable
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  1345
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1346
# 0: message segment, 1: unused
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  1347
compiler.err.cant.apply.diamond=\
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  1348
    cannot infer type arguments for {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1349
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 10816
diff changeset
  1350
# 0: message segment or type, 1: message segment
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  1351
compiler.err.cant.apply.diamond.1=\
12334
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1352
    cannot infer type arguments for {0}\n\
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1353
    reason: {1}
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1354
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1355
# 0: message segment or type, 1: message segment
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1356
compiler.misc.cant.apply.diamond.1=\
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  1357
    cannot infer type arguments for {0}\n\
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  1358
    reason: {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1359
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1360
compiler.err.unreachable.stmt=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1361
    unreachable statement
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1362
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1363
compiler.err.not.exhaustive=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1364
    the switch expression does not cover all possible input values
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  1365
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
compiler.err.initializer.must.be.able.to.complete.normally=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1367
    initializer must be able to complete normally
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1368
23133
a58476887b3d 8031383: Error recovery in JavacParser could be improved
jlahoda
parents: 23128
diff changeset
  1369
compiler.err.initializer.not.allowed=\
a58476887b3d 8031383: Error recovery in JavacParser could be improved
jlahoda
parents: 23128
diff changeset
  1370
    initializers not allowed in interfaces
a58476887b3d 8031383: Error recovery in JavacParser could be improved
jlahoda
parents: 23128
diff changeset
  1371
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1372
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1373
compiler.err.unreported.exception.need.to.catch.or.throw=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1374
    unreported exception {0}; must be caught or declared to be thrown
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1375
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1376
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1377
compiler.err.unreported.exception.default.constructor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1378
    unreported exception {0} in default constructor
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1379
8428
1e9935b883cd 7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
mcimadamore
parents: 8242
diff changeset
  1380
# 0: type, 1: name
1e9935b883cd 7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
mcimadamore
parents: 8242
diff changeset
  1381
compiler.err.unreported.exception.implicit.close=\
1e9935b883cd 7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
mcimadamore
parents: 8242
diff changeset
  1382
    unreported exception {0}; must be caught or declared to be thrown\n\
1e9935b883cd 7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
mcimadamore
parents: 8242
diff changeset
  1383
    exception thrown from implicit call to close() on resource variable ''{1}''
1e9935b883cd 7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
mcimadamore
parents: 8242
diff changeset
  1384
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
compiler.err.unsupported.cross.fp.lit=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
    hexadecimal floating-point literals are not supported on this VM
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1387
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
compiler.err.void.not.allowed.here=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1389
    ''void'' type not allowed here
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1391
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1392
compiler.err.wrong.number.type.args=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1393
    wrong number of type arguments; required {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1394
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1395
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1396
compiler.err.var.might.already.be.assigned=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1397
    variable {0} might already have been assigned
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1398
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1399
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1400
compiler.err.var.might.not.have.been.initialized=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1401
    variable {0} might not have been initialized
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1402
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1403
# 0: symbol
19122
1841f2fa76de 8017216: javac doesn't fill in end position for some errors of type not found
ksrini
parents: 18387
diff changeset
  1404
compiler.err.var.not.initialized.in.default.constructor=\
1841f2fa76de 8017216: javac doesn't fill in end position for some errors of type not found
ksrini
parents: 18387
diff changeset
  1405
    variable {0} not initialized in the default constructor
1841f2fa76de 8017216: javac doesn't fill in end position for some errors of type not found
ksrini
parents: 18387
diff changeset
  1406
1841f2fa76de 8017216: javac doesn't fill in end position for some errors of type not found
ksrini
parents: 18387
diff changeset
  1407
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1408
compiler.err.var.might.be.assigned.in.loop=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1409
    variable {0} might be assigned in loop
06bc494ca11e Initial load
duke
parents:
diff changeset
  1410
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1411
# 0: symbol, 1: message segment
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1412
compiler.err.varargs.invalid.trustme.anno=\
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1413
    Invalid {0} annotation. {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1414
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1415
# 0: type
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1416
compiler.misc.varargs.trustme.on.reifiable.varargs=\
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1417
    Varargs element type {0} is reifiable.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1418
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1419
# 0: symbol
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1420
compiler.misc.varargs.trustme.on.non.varargs.meth=\
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1421
    Method {0} is not a varargs method.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1422
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1423
# 0: symbol
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1424
compiler.misc.varargs.trustme.on.virtual.varargs=\
25283
082d51b7010b 7196160: Project Coin: allow @SafeVarargs on private methods
darcy
parents: 24901
diff changeset
  1425
    Instance method {0} is neither final nor private.
082d51b7010b 7196160: Project Coin: allow @SafeVarargs on private methods
darcy
parents: 24901
diff changeset
  1426
082d51b7010b 7196160: Project Coin: allow @SafeVarargs on private methods
darcy
parents: 24901
diff changeset
  1427
# 0: symbol
082d51b7010b 7196160: Project Coin: allow @SafeVarargs on private methods
darcy
parents: 24901
diff changeset
  1428
compiler.misc.varargs.trustme.on.virtual.varargs.final.only=\
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1429
    Instance method {0} is not final.
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  1430
11053
48713f779b1d 7108669: cleanup Log methods for direct printing to streams
jjg
parents: 10816
diff changeset
  1431
# 0: type, 1: symbol kind, 2: symbol
8229
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8226
diff changeset
  1432
compiler.misc.inaccessible.varargs.type=\
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8226
diff changeset
  1433
    formal varargs element type {0} is not accessible from {1} {2}
39266c1b1b0e 6313164: javac generates code that fails byte code verification for the varargs feature
mcimadamore
parents: 8226
diff changeset
  1434
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1435
# In the following string, {1} will always be the detail message from
06bc494ca11e Initial load
duke
parents:
diff changeset
  1436
# java.io.IOException.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1437
# 0: symbol, 1: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1438
compiler.err.class.cant.write=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1439
    error while writing {0}: {1}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1440
06bc494ca11e Initial load
duke
parents:
diff changeset
  1441
# In the following string, {0} is the name of the class in the Java source.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1442
# It really should be used two times..
43756
118221d3960d 8174027: error message should adapt to the corresponding top level element
vromero
parents: 43588
diff changeset
  1443
# 0: kind name, 1: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1444
compiler.err.class.public.should.be.in.file=\
43756
118221d3960d 8174027: error message should adapt to the corresponding top level element
vromero
parents: 43588
diff changeset
  1445
    {0} {1} is public, should be declared in a file named {1}.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1446
06bc494ca11e Initial load
duke
parents:
diff changeset
  1447
## All errors which do not refer to a particular line in the source code are
06bc494ca11e Initial load
duke
parents:
diff changeset
  1448
## preceded by this string.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1449
compiler.err.error=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1450
    error:\u0020
06bc494ca11e Initial load
duke
parents:
diff changeset
  1451
06bc494ca11e Initial load
duke
parents:
diff changeset
  1452
# The following error messages do not refer to a line in the source code.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1453
compiler.err.cant.read.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1454
    cannot read: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1455
27387
54142fc27e8a 8063039: incorrect message reference or broken message file
jjg
parents: 25874
diff changeset
  1456
# 0: string
54142fc27e8a 8063039: incorrect message reference or broken message file
jjg
parents: 25874
diff changeset
  1457
compiler.err.plugin.not.found=\
54142fc27e8a 8063039: incorrect message reference or broken message file
jjg
parents: 25874
diff changeset
  1458
    plug-in not found: {0}
54142fc27e8a 8063039: incorrect message reference or broken message file
jjg
parents: 25874
diff changeset
  1459
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1460
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1461
compiler.warn.locn.unknown.file.on.module.path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1462
    unknown file on module path: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1463
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1464
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1465
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1466
compiler.err.locn.bad.module-info=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1467
    problem reading module-info.class in {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1468
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1469
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1470
compiler.err.locn.cant.read.directory=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1471
    cannot read directory {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1472
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1473
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1474
compiler.err.locn.cant.read.file=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1475
    cannot read file {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1476
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1477
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1478
compiler.err.locn.cant.get.module.name.for.jar=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1479
    cannot determine module name for {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1480
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1481
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1482
compiler.err.multi-module.outdir.cannot.be.exploded.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1483
    in multi-module mode, the output directory cannot be an exploded module: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1484
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1485
# 0: path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1486
compiler.warn.outdir.is.in.exploded.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1487
    the output directory is within an exploded module: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1488
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  1489
# 0: file object
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1490
compiler.err.locn.module-info.not.allowed.on.patch.path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1491
    module-info.class not allowed on patch path: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1492
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1493
# 0: string
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1494
compiler.err.locn.invalid.arg.for.xpatch=\
40308
274367a99f98 8136930: Simplify use of module-system options by custom launchers
jjg
parents: 39361
diff changeset
  1495
    invalid argument for --patch-module option: {0}
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1496
44822
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44576
diff changeset
  1497
compiler.err.file.sb.on.source.or.patch.path.for.module=\
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44576
diff changeset
  1498
    file should be on source path, or on patch path for module
2f24758e7ae0 8176327: javac produces wrong module-info
jjg
parents: 44576
diff changeset
  1499
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1500
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  1501
06bc494ca11e Initial load
duke
parents:
diff changeset
  1502
# Fatal Errors
06bc494ca11e Initial load
duke
parents:
diff changeset
  1503
06bc494ca11e Initial load
duke
parents:
diff changeset
  1504
compiler.misc.fatal.err.no.java.lang=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1505
    Fatal Error: Unable to find package java.lang in classpath or bootclasspath
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1506
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1507
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1508
compiler.misc.fatal.err.cant.locate.meth=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1509
    Fatal Error: Unable to find method {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1510
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1511
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1512
compiler.misc.fatal.err.cant.locate.field=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1513
    Fatal Error: Unable to find field {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1514
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1515
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1516
compiler.misc.fatal.err.cant.locate.ctor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1517
    Fatal Error: Unable to find constructor for {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1518
10637
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10628
diff changeset
  1519
compiler.misc.fatal.err.cant.close=\
2ea5fbb913ac 7092965: javac should not close processorClassLoader before end of compilation
jjg
parents: 10628
diff changeset
  1520
    Fatal Error: Cannot close compiler resources
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1521
06bc494ca11e Initial load
duke
parents:
diff changeset
  1522
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  1523
06bc494ca11e Initial load
duke
parents:
diff changeset
  1524
##
06bc494ca11e Initial load
duke
parents:
diff changeset
  1525
## miscellaneous strings
06bc494ca11e Initial load
duke
parents:
diff changeset
  1526
##
06bc494ca11e Initial load
duke
parents:
diff changeset
  1527
36272
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
  1528
compiler.misc.diamond.anonymous.methods.implicitly.override=\
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
  1529
    (due to <>, every non-private method declared in this anonymous class must override or implement a method from a supertype)
950bd442a822 8151018: javac should emit a clearer diagnostic when a <> inferred anonymous type's non-private methods don't override super's
sadayapalam
parents: 36153
diff changeset
  1530
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1531
compiler.misc.source.unavailable=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1532
    (source unavailable)
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1533
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1534
compiler.misc.base.membership=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1535
    all your base class are belong to us
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1536
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1537
# 0: string, 1: string, 2: boolean
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1538
compiler.misc.x.print.processor.info=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1539
    Processor {0} matches {1} and returns {2}.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1540
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1541
# 0: number, 1: string, 2: set of symbol, 3: boolean
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1542
compiler.misc.x.print.rounds=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1543
    Round {0}:\n\tinput files: {1}\n\tannotations: {2}\n\tlast round: {3}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1544
23128
c91951cf65f0 6533516: Warning needed for file with future time stamps
jjg
parents: 22701
diff changeset
  1545
# 0: file name
c91951cf65f0 6533516: Warning needed for file with future time stamps
jjg
parents: 22701
diff changeset
  1546
compiler.warn.file.from.future=\
c91951cf65f0 6533516: Warning needed for file with future time stamps
jjg
parents: 22701
diff changeset
  1547
    Modification date is in the future for file {0}
c91951cf65f0 6533516: Warning needed for file with future time stamps
jjg
parents: 22701
diff changeset
  1548
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1549
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  1550
06bc494ca11e Initial load
duke
parents:
diff changeset
  1551
## The following string will appear before all messages keyed as:
06bc494ca11e Initial load
duke
parents:
diff changeset
  1552
## "compiler.note".
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
  1553
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1554
compiler.note.compressed.diags=\
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1555
    Some messages have been simplified; recompile with -Xdiags:verbose to get full output
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  1556
18386
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1557
# 0: boolean, 1: symbol
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1558
compiler.note.lambda.stat=\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1559
    Translating lambda expression\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1560
    alternate metafactory = {0}\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1561
    synthetic method = {1}
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1562
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1563
# 0: boolean, 1: unused
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1564
compiler.note.mref.stat=\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1565
    Translating method reference\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1566
    alternate metafactory = {0}\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1567
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1568
# 0: boolean, 1: symbol
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1569
compiler.note.mref.stat.1=\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1570
    Translating method reference\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1571
    alternate metafactory = {0}\n\
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1572
    bridge method = {1}
174879d5b5d0 8013576: Add stat support to LambdaToMethod
mcimadamore
parents: 17582
diff changeset
  1573
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1574
compiler.note.note=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1575
    Note:\u0020
06bc494ca11e Initial load
duke
parents:
diff changeset
  1576
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1577
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1578
compiler.note.deprecated.filename=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1579
    {0} uses or overrides a deprecated API.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1580
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1581
compiler.note.deprecated.plural=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1582
    Some input files use or override a deprecated API.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1583
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1584
# The following string may appear after one of the above deprecation
06bc494ca11e Initial load
duke
parents:
diff changeset
  1585
# messages.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1586
compiler.note.deprecated.recompile=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1587
    Recompile with -Xlint:deprecation for details.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1588
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1589
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1590
compiler.note.deprecated.filename.additional=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1591
    {0} has additional uses or overrides of a deprecated API.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1592
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1593
compiler.note.deprecated.plural.additional=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1594
    Some input files additionally use or override a deprecated API.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1595
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1596
# 0: file name
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1597
compiler.note.removal.filename=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1598
    {0} uses or overrides a deprecated API that is marked for removal.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1599
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1600
compiler.note.removal.plural=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1601
    Some input files use or override a deprecated API that is marked for removal.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1602
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1603
# The following string may appear after one of the above removal messages.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1604
compiler.note.removal.recompile=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1605
    Recompile with -Xlint:removal for details.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1606
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1607
# 0: file name
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1608
compiler.note.removal.filename.additional=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1609
    {0} has additional uses or overrides of a deprecated API that is marked for removal.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1610
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1611
compiler.note.removal.plural.additional=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1612
    Some input files additionally use or override a deprecated API that is marked for removal.
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1613
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1614
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1615
compiler.note.unchecked.filename=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1616
    {0} uses unchecked or unsafe operations.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1617
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1618
compiler.note.unchecked.plural=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1619
    Some input files use unchecked or unsafe operations.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1620
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1621
# The following string may appear after one of the above unchecked messages.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1622
compiler.note.unchecked.recompile=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1623
    Recompile with -Xlint:unchecked for details.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1624
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1625
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1626
compiler.note.unchecked.filename.additional=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1627
    {0} has additional unchecked or unsafe operations.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1628
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1629
compiler.note.unchecked.plural.additional=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1630
    Some input files additionally use unchecked or unsafe operations.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1631
49580
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1632
# 0: file name
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1633
compiler.note.preview.filename=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1634
    {0} uses preview language features.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1635
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1636
compiler.note.preview.plural=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1637
    Some input files use preview language features.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1638
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1639
# The following string may appear after one of the above deprecation
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1640
# messages.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1641
compiler.note.preview.recompile=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1642
    Recompile with -Xlint:preview for details.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1643
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1644
# 0: file name
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1645
compiler.note.preview.filename.additional=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1646
    {0} has additional uses of preview language features.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1647
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1648
compiler.note.preview.plural.additional=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1649
    Some input files additionally use preview language features.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  1650
3661
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1651
# Notes related to annotation processing
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1652
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1653
# Print a client-generated note; assumed to be localized, no translation required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1654
# 0: string
3661
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1655
compiler.note.proc.messager=\
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1656
    {0}
104c425e96aa 6873845: refine access to symbol file
jjg
parents: 3560
diff changeset
  1657
43149
047a57b0839a 8172262: packages missing from docs build
jlahoda
parents: 43138
diff changeset
  1658
# 0: string, 1: string, 2: string
047a57b0839a 8172262: packages missing from docs build
jlahoda
parents: 43138
diff changeset
  1659
compiler.note.multiple.elements=\
43869
4ef31af1d15a 8175038: Wrong note about multiple type/package elements being found.
jlahoda
parents: 43865
diff changeset
  1660
    Multiple elements named ''{1}'' in modules ''{2}'' were found by javax.lang.model.util.Elements.{0}.
43149
047a57b0839a 8172262: packages missing from docs build
jlahoda
parents: 43138
diff changeset
  1661
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1662
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  1663
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1664
# 0: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1665
compiler.misc.count.error=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1666
    {0} error
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1667
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1668
# 0: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1669
compiler.misc.count.error.plural=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1670
    {0} errors
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1671
54332
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1672
# 0: number, 1: number
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1673
compiler.misc.count.error.recompile=\
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1674
    only showing the first {0} errors, of {1} total; use -Xmaxerrs if you would like to see more
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1675
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1676
# 0: number, 1: number
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1677
compiler.misc.count.warn.recompile=\
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1678
    only showing the first {0} warnings, of {1} total; use -Xmaxwarns if you would like to see more
9a8fe0bc38c3 8220632: Suggest recompiling with a larger value of -Xmaxerrs/-Xmaxwarns if diagnostics were suppressed
cushon
parents: 54132
diff changeset
  1679
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1680
# 0: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1681
compiler.misc.count.warn=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1682
    {0} warning
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1683
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1684
# 0: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1685
compiler.misc.count.warn.plural=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1686
    {0} warnings
06bc494ca11e Initial load
duke
parents:
diff changeset
  1687
6031
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5848
diff changeset
  1688
compiler.misc.version.not.available=\
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5848
diff changeset
  1689
    (version info not available)
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5848
diff changeset
  1690
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1691
## extra output when using -verbose (JavaCompiler)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1692
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1693
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1694
compiler.misc.verbose.checking.attribution=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1695
    [checking {0}]
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1696
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1697
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1698
compiler.misc.verbose.parsing.done=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1699
    [parsing completed {0}ms]
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1700
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1701
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1702
compiler.misc.verbose.parsing.started=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1703
    [parsing started {0}]
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1704
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1705
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1706
compiler.misc.verbose.total=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1707
    [total {0}ms]
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1708
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1709
# 0: file name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1710
compiler.misc.verbose.wrote.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1711
    [wrote {0}]
06bc494ca11e Initial load
duke
parents:
diff changeset
  1712
06bc494ca11e Initial load
duke
parents:
diff changeset
  1713
## extra output when using -verbose (code/ClassReader)
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1714
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1715
compiler.misc.verbose.loading=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1716
    [loading {0}]
06bc494ca11e Initial load
duke
parents:
diff changeset
  1717
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1718
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1719
compiler.misc.verbose.sourcepath=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1720
    [search path for source files: {0}]
06bc494ca11e Initial load
duke
parents:
diff changeset
  1721
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1722
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1723
compiler.misc.verbose.classpath=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1724
    [search path for class files: {0}]
06bc494ca11e Initial load
duke
parents:
diff changeset
  1725
06bc494ca11e Initial load
duke
parents:
diff changeset
  1726
## extra output when using -prompt (util/Log)
06bc494ca11e Initial load
duke
parents:
diff changeset
  1727
compiler.misc.resume.abort=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1728
    R)esume, A)bort>
06bc494ca11e Initial load
duke
parents:
diff changeset
  1729
06bc494ca11e Initial load
duke
parents:
diff changeset
  1730
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  1731
06bc494ca11e Initial load
duke
parents:
diff changeset
  1732
##
06bc494ca11e Initial load
duke
parents:
diff changeset
  1733
## warnings
06bc494ca11e Initial load
duke
parents:
diff changeset
  1734
##
06bc494ca11e Initial load
duke
parents:
diff changeset
  1735
06bc494ca11e Initial load
duke
parents:
diff changeset
  1736
## All warning messages are preceded by the following string.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1737
compiler.warn.warning=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1738
    warning:\u0020
06bc494ca11e Initial load
duke
parents:
diff changeset
  1739
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1740
## Warning messages may also include the following prefix to identify a
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1741
## lint option
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1742
# 0: option name
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1743
compiler.warn.lintOption=\
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1744
    [{0}]\u0020
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1745
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1746
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1747
compiler.warn.constant.SVUID=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1748
    serialVersionUID must be constant in class {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1749
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1750
# 0: path
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1751
compiler.warn.dir.path.element.not.found=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1752
    bad path element "{0}": no such directory
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1753
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1754
# 0: file name
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1755
compiler.warn.dir.path.element.not.directory=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1756
    bad path element "{0}": not a directory
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1757
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1758
compiler.warn.finally.cannot.complete=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1759
    finally clause cannot complete normally
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1760
42822
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  1761
# 0: name
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  1762
compiler.warn.poor.choice.for.module.name=\
44568
3d870d326626 8176572: Javac does not enforce module name restrictions
sadayapalam
parents: 44289
diff changeset
  1763
    module name component {0} should avoid terminal digits
42822
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  1764
43270
de9a02e20567 8171177: Compiler should issue a warning for incubating modules that are resolved
jlahoda
parents: 43267
diff changeset
  1765
# 0: string
de9a02e20567 8171177: Compiler should issue a warning for incubating modules that are resolved
jlahoda
parents: 43267
diff changeset
  1766
compiler.warn.incubating.modules=\
de9a02e20567 8171177: Compiler should issue a warning for incubating modules that are resolved
jlahoda
parents: 43267
diff changeset
  1767
    using incubating module(s): {0}
de9a02e20567 8171177: Compiler should issue a warning for incubating modules that are resolved
jlahoda
parents: 43267
diff changeset
  1768
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1769
# 0: symbol, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1770
compiler.warn.has.been.deprecated=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1771
    {0} in {1} has been deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1772
41637
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1773
# 0: symbol, 1: symbol
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1774
compiler.warn.has.been.deprecated.for.removal=\
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1775
    {0} in {1} has been deprecated and marked for removal
7b24b4c32ee6 8145471: javac changes for enhanced deprecation
jjg
parents: 41629
diff changeset
  1776
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1777
# 0: symbol
58713
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1778
compiler.warn.is.preview=\
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1779
    {0} is an API that is part of a preview feature
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1780
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1781
# 0: symbol
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1782
compiler.err.is.preview=\
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1783
    {0} is an API that is part of a preview feature
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1784
ad69fd32778e 8226585: Improve javac messages for using a preview API
jlahoda
parents: 58203
diff changeset
  1785
# 0: symbol
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1786
compiler.warn.has.been.deprecated.module=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1787
    module {0} has been deprecated
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1788
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1789
# 0: symbol
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1790
compiler.warn.has.been.deprecated.for.removal.module=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1791
    module {0} has been deprecated and marked for removal
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1792
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  1793
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1794
compiler.warn.sun.proprietary=\
5848
c5a4ce47e780 6960407: Potential rebranding issues in openjdk/langtools repository sources
jjg
parents: 5846
diff changeset
  1795
    {0} is internal proprietary API and may be removed in a future release
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1796
06bc494ca11e Initial load
duke
parents:
diff changeset
  1797
compiler.warn.illegal.char.for.encoding=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1798
    unmappable character for encoding {0}
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1799
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1800
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1801
compiler.warn.improper.SVUID=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1802
    serialVersionUID must be declared static final in class {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1803
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1804
# 0: type, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1805
compiler.warn.inexact.non-varargs.call=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1806
    non-varargs call of varargs method with inexact argument type for last parameter;\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1807
    cast to {0} for a varargs call\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1808
    cast to {1} for a non-varargs call and to suppress this warning
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1809
8849
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1810
# 0: list of type
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1811
compiler.warn.unreachable.catch=\
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1812
    unreachable catch clause\n\
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1813
    thrown type {0} has already been caught
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1814
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1815
# 0: list of type
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1816
compiler.warn.unreachable.catch.1=\
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1817
    unreachable catch clause\n\
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1818
    thrown types {0} have already been caught
4189ac38ddc9 6558548: The compiler needs to be aligned with clarified specification of throws
mcimadamore
parents: 8635
diff changeset
  1819
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1820
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1821
compiler.warn.long.SVUID=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1822
    serialVersionUID must be of type long in class {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1823
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1824
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1825
compiler.warn.missing.SVUID=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1826
    serializable class {0} has no definition of serialVersionUID
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1827
19914
d86271bd430a 8016177: structural most specific and stuckness
vromero
parents: 19651
diff changeset
  1828
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
d86271bd430a 8016177: structural most specific and stuckness
vromero
parents: 19651
diff changeset
  1829
compiler.warn.potentially.ambiguous.overload=\
d86271bd430a 8016177: structural most specific and stuckness
vromero
parents: 19651
diff changeset
  1830
    {0} in {1} is potentially ambiguous with {2} in {3}
d86271bd430a 8016177: structural most specific and stuckness
vromero
parents: 19651
diff changeset
  1831
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1832
# 0: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1833
compiler.warn.override.varargs.missing=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1834
    {0}; overridden method has no ''...''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1835
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1836
# 0: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1837
compiler.warn.override.varargs.extra=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1838
    {0}; overriding method is missing ''...''
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1839
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1840
# 0: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1841
compiler.warn.override.bridge=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1842
    {0}; overridden method is a bridge method
06bc494ca11e Initial load
duke
parents:
diff changeset
  1843
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1844
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1845
compiler.warn.pkg-info.already.seen=\
4692
4df6242d3940 6307206: missing lint control for pkg-info
jjg
parents: 4142
diff changeset
  1846
    a package-info.java file has already been seen for package {0}
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1847
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1848
# 0: path
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1849
compiler.warn.path.element.not.found=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1850
    bad path element "{0}": no such file or directory
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1851
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1852
compiler.warn.possible.fall-through.into.case=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1853
    possible fall-through into case
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1854
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1855
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1856
compiler.warn.redundant.cast=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1857
    redundant cast to {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1858
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1859
# 0: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1860
compiler.warn.position.overflow=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1861
    Position encoding overflows at line {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1862
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1863
# 0: file name, 1: number, 2: number
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1864
compiler.warn.big.major.version=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1865
    {0}: major version {1} is newer than {2}, the highest major version supported by this compiler.\n\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1866
    It is recommended that the compiler be upgraded.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1867
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  1868
# 0: kind name, 1: symbol
5002
12a9e8562200 4880220: Add a warning when accessing a static method via an reference
jjg
parents: 4692
diff changeset
  1869
compiler.warn.static.not.qualified.by.type=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  1870
    static {0} should be qualified by type name, {1}, instead of by an expression
5002
12a9e8562200 4880220: Add a warning when accessing a static method via an reference
jjg
parents: 4692
diff changeset
  1871
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1872
# 0: string
7335
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7330
diff changeset
  1873
compiler.warn.source.no.bootclasspath=\
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7330
diff changeset
  1874
    bootstrap class path not set in conjunction with -source {0}
8b390fd27190 6900037: javac should warn if earlier -source is used and bootclasspath not set
jjg
parents: 7330
diff changeset
  1875
19508
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1876
# 0: string
58203
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 57725
diff changeset
  1877
compiler.warn.source.no.system.modules.path=\
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 57725
diff changeset
  1878
    system modules path not set in conjunction with -source {0}
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 57725
diff changeset
  1879
dfd434203aa0 8228460: bootstrap class path not set in conjunction with -source 11
jlahoda
parents: 57725
diff changeset
  1880
# 0: string
19508
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1881
compiler.warn.option.obsolete.source=\
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1882
    source value {0} is obsolete and will be removed in a future release
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1883
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  1884
# 0: target
19508
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1885
compiler.warn.option.obsolete.target=\
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1886
    target value {0} is obsolete and will be removed in a future release
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1887
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1888
# 0: string, 1: string
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1889
compiler.err.option.removed.source=\
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1890
    Source option {0} is no longer supported. Use {1} or later.
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1891
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  1892
# 0: target, 1: target
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1893
compiler.err.option.removed.target=\
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1894
    Target option {0} is no longer supported. Use {1} or later.
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  1895
48746
c9ab849cd2f5 8190452: javac should not add MethodParameters attributes to v51 and earlier class files
cushon
parents: 48721
diff changeset
  1896
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  1897
# 0: target, 1: target
48746
c9ab849cd2f5 8190452: javac should not add MethodParameters attributes to v51 and earlier class files
cushon
parents: 48721
diff changeset
  1898
compiler.warn.option.parameters.unsupported=\
c9ab849cd2f5 8190452: javac should not add MethodParameters attributes to v51 and earlier class files
cushon
parents: 48721
diff changeset
  1899
    -parameters is not supported for target value {0}. Use {1} or later.
c9ab849cd2f5 8190452: javac should not add MethodParameters attributes to v51 and earlier class files
cushon
parents: 48721
diff changeset
  1900
19508
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1901
compiler.warn.option.obsolete.suppression=\
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1902
    To suppress warnings about obsolete options, use -Xlint:-options.
e2cd0ed6c9b0 8011043: Warn about use of 1.5 and earlier source and target values
darcy
parents: 19502
diff changeset
  1903
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1904
# 0: name, 1: number, 2: number, 3: number, 4: number
7624
c31b0ea95b37 6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents: 7335
diff changeset
  1905
compiler.warn.future.attr=\
c31b0ea95b37 6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents: 7335
diff changeset
  1906
    {0} attribute introduced in version {1}.{2} class files is ignored in version {3}.{4} class files
c31b0ea95b37 6999210: javac should be able to warn of anomalous conditions in classfiles
jjg
parents: 7335
diff changeset
  1907
44576
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1908
compiler.warn.requires.automatic=\
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1909
    requires directive for an automatic module
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1910
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1911
compiler.warn.requires.transitive.automatic=\
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1912
    requires transitive directive for an automatic module
9e18c9ce29e7 8178011: Automatic module warnings
jlahoda
parents: 44568
diff changeset
  1913
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1914
# Warnings related to annotation processing
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  1915
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1916
compiler.warn.proc.package.does.not.exist=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1917
    package {0} does not exist
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1918
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1919
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1920
compiler.warn.proc.file.reopening=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1921
    Attempt to create a file for ''{0}'' multiple times
06bc494ca11e Initial load
duke
parents:
diff changeset
  1922
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  1923
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1924
compiler.warn.proc.type.already.exists=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1925
    A file for type ''{0}'' already exists on the sourcepath or classpath
06bc494ca11e Initial load
duke
parents:
diff changeset
  1926
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1927
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1928
compiler.warn.proc.type.recreate=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1929
    Attempt to create a file for type ''{0}'' multiple times
06bc494ca11e Initial load
duke
parents:
diff changeset
  1930
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1931
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1932
compiler.warn.proc.illegal.file.name=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1933
    Cannot create file for illegal name ''{0}''.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1934
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1935
# 0: string, 1: string
6157
218670cd9b1c 6972556: warning for using a file name instead of a binary name for Filer.createSourceFile
jjg
parents: 6151
diff changeset
  1936
compiler.warn.proc.suspicious.class.name=\
218670cd9b1c 6972556: warning for using a file name instead of a binary name for Filer.createSourceFile
jjg
parents: 6151
diff changeset
  1937
    Creating file for a type whose name ends in {1}: ''{0}''
218670cd9b1c 6972556: warning for using a file name instead of a binary name for Filer.createSourceFile
jjg
parents: 6151
diff changeset
  1938
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1939
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1940
compiler.warn.proc.file.create.last.round=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1941
    File for type ''{0}'' created in the last round will not be subject to annotation processing.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1942
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1943
# 0: string, 1: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1944
compiler.warn.proc.malformed.supported.string=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1945
    Malformed string ''{0}'' for a supported annotation type returned by processor ''{1}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  1946
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1947
# 0: set of string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1948
compiler.warn.proc.annotations.without.processors=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1949
    No processor claimed any of these annotations: {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1950
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1951
# 0: source version, 1: string, 2: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1952
compiler.warn.proc.processor.incompatible.source.version=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1953
    Supported source version ''{0}'' from annotation processor ''{1}'' less than -source ''{2}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  1954
55021
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1955
# 0: string, 1: string
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1956
compiler.warn.proc.duplicate.option.name=\
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1957
    Duplicate supported option ''{0}'' returned by annotation processor ''{1}''
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1958
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1959
# 0: string, 1: string
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1960
compiler.warn.proc.duplicate.supported.annotation=\
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1961
    Duplicate supported annotation type ''{0}'' returned by annotation processor ''{1}''
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1962
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1963
# 0: string
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1964
compiler.warn.proc.redundant.types.with.wildcard=\
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1965
    Annotation processor ''{0}'' redundantly supports both ''*'' and other annotation types
d84176dd57b0 8224177: Harden annotation processing framework to irregular behavior from processors
darcy
parents: 54650
diff changeset
  1966
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1967
compiler.warn.proc.proc-only.requested.no.procs=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1968
    Annotation processing without compilation requested but no processors were found.
06bc494ca11e Initial load
duke
parents:
diff changeset
  1969
06bc494ca11e Initial load
duke
parents:
diff changeset
  1970
compiler.warn.proc.use.implicit=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1971
    Implicitly compiled files were not subject to annotation processing.\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1972
    Use -implicit to specify a policy for implicit compilation.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1973
06bc494ca11e Initial load
duke
parents:
diff changeset
  1974
compiler.warn.proc.use.proc.or.implicit=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1975
    Implicitly compiled files were not subject to annotation processing.\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1976
    Use -proc:none to disable annotation processing or -implicit to specify a policy for implicit compilation.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1977
06bc494ca11e Initial load
duke
parents:
diff changeset
  1978
# Print a client-generated warning; assumed to be localized, no translation required
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1979
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1980
compiler.warn.proc.messager=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1981
    {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  1982
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  1983
# 0: set of string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1984
compiler.warn.proc.unclosed.type.files=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1985
    Unclosed files for the types ''{0}''; these types will not undergo annotation processing
06bc494ca11e Initial load
duke
parents:
diff changeset
  1986
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1987
# 0: string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1988
compiler.warn.proc.unmatched.processor.options=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  1989
    The following options were not recognized by any processor: ''{0}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  1990
7211
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  1991
compiler.warn.try.explicit.close.call=\
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  1992
    explicit call to close() on an auto-closeable resource
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1993
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1994
# 0: symbol
7211
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  1995
compiler.warn.try.resource.not.referenced=\
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  1996
    auto-closeable resource {0} is never referenced in body of corresponding try statement
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  1997
9076
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 9074
diff changeset
  1998
# 0: type
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 9074
diff changeset
  1999
compiler.warn.try.resource.throws.interrupted.exc=\
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 9074
diff changeset
  2000
    auto-closeable resource {0} has a member method close() that could throw InterruptedException
45c73da050e9 7027157: Project Coin: javac warnings for AutoCloseable.close throwing InterruptedException
mcimadamore
parents: 9074
diff changeset
  2001
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2002
compiler.warn.unchecked.assign=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2003
    unchecked assignment: {0} to {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2004
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2005
# 0: symbol, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2006
compiler.warn.unchecked.assign.to.var=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2007
    unchecked assignment to variable {0} as member of raw type {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2008
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2009
# 0: symbol, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2010
compiler.warn.unchecked.call.mbr.of.raw.type=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2011
    unchecked call to {0} as a member of the raw type {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2012
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2013
compiler.warn.unchecked.cast.to.type=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2014
    unchecked cast to type {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2015
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  2016
# 0: kind name, 1: name, 2: object, 3: object, 4: kind name, 5: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2017
compiler.warn.unchecked.meth.invocation.applied=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2018
    unchecked method invocation: {0} {1} in {4} {5} is applied to given types\n\
1534
e923a41e84cc 6758789: Some method resolution diagnostic should be improved
mcimadamore
parents: 1358
diff changeset
  2019
    required: {2}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
  2020
    found:    {3}
1534
e923a41e84cc 6758789: Some method resolution diagnostic should be improved
mcimadamore
parents: 1358
diff changeset
  2021
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2022
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2023
compiler.warn.unchecked.generic.array.creation=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2024
    unchecked generic array creation for varargs parameter of type {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2025
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2026
# 0: type
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2027
compiler.warn.unchecked.varargs.non.reifiable.type=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2028
    Possible heap pollution from parameterized vararg type {0}
5846
6df0e6bcb388 6945418: Project Coin: Simplified Varargs Method Invocation
mcimadamore
parents: 5520
diff changeset
  2029
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2030
# 0: symbol
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2031
compiler.warn.varargs.unsafe.use.varargs.param=\
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2032
    Varargs method could cause heap pollution from non-reifiable varargs parameter {0}
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2033
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2034
compiler.warn.missing.deprecated.annotation=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2035
    deprecated item is not annotated with @Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2036
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2037
# 0: kind name
40313
a85f92c9a8ab 8068626: Add javac lint warning when the @Deprecated annotation is used where it is a no-op
sadayapalam
parents: 40308
diff changeset
  2038
compiler.warn.deprecated.annotation.has.no.effect=\
a85f92c9a8ab 8068626: Add javac lint warning when the @Deprecated annotation is used where it is a no-op
sadayapalam
parents: 40308
diff changeset
  2039
    @Deprecated annotation has no effect on this {0} declaration
a85f92c9a8ab 8068626: Add javac lint warning when the @Deprecated annotation is used where it is a no-op
sadayapalam
parents: 40308
diff changeset
  2040
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2041
# 0: string
42837
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42822
diff changeset
  2042
compiler.warn.invalid.path=\
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42822
diff changeset
  2043
    Invalid filename: {0}
03ee805ba348 8169005: tools/javac/T8132562/ClassPathWithDoubleQuotesTest.java fails after fix to JDK-8132562
vromero
parents: 42822
diff changeset
  2044
53755
4cd89541b492 8201544: Improve javac command line parsing and error reporting
sdama
parents: 53227
diff changeset
  2045
# 0: string
4cd89541b492 8201544: Improve javac command line parsing and error reporting
sdama
parents: 53227
diff changeset
  2046
compiler.err.invalid.path=\
4cd89541b492 8201544: Improve javac command line parsing and error reporting
sdama
parents: 53227
diff changeset
  2047
    Invalid filename: {0}
4cd89541b492 8201544: Improve javac command line parsing and error reporting
sdama
parents: 53227
diff changeset
  2048
4cd89541b492 8201544: Improve javac command line parsing and error reporting
sdama
parents: 53227
diff changeset
  2049
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2050
# 0: path
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2051
compiler.warn.invalid.archive.file=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2052
    Unexpected file on path: {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2053
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2054
# 0: path
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2055
compiler.warn.unexpected.archive.file=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2056
    Unexpected extension for archive file: {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2057
40513
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40502
diff changeset
  2058
# 0: path
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40502
diff changeset
  2059
compiler.err.no.zipfs.for.archive=\
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40502
diff changeset
  2060
    No file system provider is available to handle this file: {0}
39b67170b045 8153391: an image created for \"jdk.compiler\" fails to run javac
jlahoda
parents: 40502
diff changeset
  2061
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2062
compiler.warn.div.zero=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2063
    division by zero
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2064
06bc494ca11e Initial load
duke
parents:
diff changeset
  2065
compiler.warn.empty.if=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2066
    empty statement after if
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2067
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2068
# 0: type, 1: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2069
compiler.warn.annotation.method.not.found=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2070
    Cannot find annotation method ''{1}()'' in type ''{0}''
06bc494ca11e Initial load
duke
parents:
diff changeset
  2071
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2072
# 0: type, 1: name, 2: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2073
compiler.warn.annotation.method.not.found.reason=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2074
    Cannot find annotation method ''{1}()'' in type ''{0}'': {2}
06bc494ca11e Initial load
duke
parents:
diff changeset
  2075
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2076
# 0: file object, 1: symbol, 2: name
9603
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2077
compiler.warn.unknown.enum.constant=\
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2078
    unknown enum constant {1}.{2}
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2079
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2080
# 0: file object, 1: symbol, 2: name, 3: message segment
9603
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2081
compiler.warn.unknown.enum.constant.reason=\
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2082
    unknown enum constant {1}.{2}\n\
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2083
    reason: {3}
fa337b87574b 6550655: com.sun.tools.javac.code.Symbol$CompletionFailure
mcimadamore
parents: 9077
diff changeset
  2084
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2085
# 0: type, 1: type
1358
a51c5f89f8af 6747671: -Xlint:rawtypes
mcimadamore
parents: 1357
diff changeset
  2086
compiler.warn.raw.class.use=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2087
    found raw type: {0}\n\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2088
    missing type arguments for generic class {1}
1358
a51c5f89f8af 6747671: -Xlint:rawtypes
mcimadamore
parents: 1357
diff changeset
  2089
7081
94cfc5b65bed 6939780: add a warning to detect diamond sites
mcimadamore
parents: 7072
diff changeset
  2090
compiler.warn.diamond.redundant.args=\
28142
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2091
    Redundant type arguments in new expression (use diamond operator instead).
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2092
47268
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  2093
compiler.warn.local.redundant.type=\
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  2094
    Redundant type for local variable (replace explicit type with ''var'').
48ec75306997 8177466: Add compiler support for local variable type-inference
mcimadamore
parents: 47216
diff changeset
  2095
28142
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2096
compiler.warn.potential.lambda.found=\
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2097
    This anonymous inner class creation can be turned into a lambda expression.
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2098
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2099
compiler.warn.method.redundant.typeargs=\
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2100
    Redundant type arguments in method call.
32a6b1af81b1 8064365: Better support for finder capabilities in target-typing context
mcimadamore
parents: 27991
diff changeset
  2101
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2102
# 0: symbol, 1: message segment
7643
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2103
compiler.warn.varargs.redundant.trustme.anno=\
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2104
    Redundant {0} annotation. {1}
a067a0cda531 6993978: Project Coin: Compiler support of annotation to reduce varargs warnings
mcimadamore
parents: 7624
diff changeset
  2105
24219
e7dc661cafae 8029102: Enhance compiler warnings for Lambda
vromero
parents: 24068
diff changeset
  2106
# 0: symbol
41629
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2107
compiler.warn.access.to.member.from.serializable.element=\
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2108
    access to member {0} from serializable element can be publicly accessible to untrusted code
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2109
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2110
# 0: symbol
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2111
compiler.warn.access.to.member.from.serializable.lambda=\
9d203cde7d84 8026721: Enhance Lambda serialization
vromero
parents: 41444
diff changeset
  2112
    access to member {0} from serializable lambda can be publicly accessible to untrusted code
24219
e7dc661cafae 8029102: Enhance compiler warnings for Lambda
vromero
parents: 24068
diff changeset
  2113
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2114
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2115
06bc494ca11e Initial load
duke
parents:
diff changeset
  2116
## The following are tokens which are non-terminals in the language. They should
06bc494ca11e Initial load
duke
parents:
diff changeset
  2117
## be named as JLS3 calls them when translated to the appropriate language.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2118
compiler.misc.token.identifier=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2119
    <identifier>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2120
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2121
compiler.misc.token.character=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2122
    <character>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2123
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2124
compiler.misc.token.string=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2125
    <string>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2126
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2127
compiler.misc.token.integer=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2128
    <integer>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2129
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2130
compiler.misc.token.long-integer=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2131
    <long integer>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2132
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2133
compiler.misc.token.float=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2134
    <float>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2135
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2136
compiler.misc.token.double=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2137
    <double>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2138
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2139
compiler.misc.token.bad-symbol=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2140
    <bad symbol>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2141
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2142
compiler.misc.token.end-of-input=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2143
    <end of input>
06bc494ca11e Initial load
duke
parents:
diff changeset
  2144
06bc494ca11e Initial load
duke
parents:
diff changeset
  2145
## The argument to the following string will always be one of the following:
06bc494ca11e Initial load
duke
parents:
diff changeset
  2146
## 1. one of the above non-terminals
06bc494ca11e Initial load
duke
parents:
diff changeset
  2147
## 2. a keyword (JLS1.8)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2148
## 3. a boolean literal (JLS3.10.3)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2149
## 4. the null literal (JLS3.10.7)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2150
## 5. a Java separator (JLS3.11)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2151
## 6. an operator (JLS3.12)
06bc494ca11e Initial load
duke
parents:
diff changeset
  2152
##
06bc494ca11e Initial load
duke
parents:
diff changeset
  2153
## This is the only place these tokens will be used.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2154
# 0: token
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2155
compiler.err.expected=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2156
    {0} expected
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2157
48721
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  2158
# 0: string
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  2159
compiler.err.expected.str=\
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  2160
    {0} expected
ef3557eb4306 8196403: remove the remaining use of string keys for errors and warnings in the compiler
vromero
parents: 48608
diff changeset
  2161
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2162
# 0: token, 1: token
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2163
compiler.err.expected2=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2164
    {0} or {1} expected
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2165
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2166
# 0: token, 1: token, 2: token
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2167
compiler.err.expected3=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2168
    {0}, {1}, or {2} expected
06bc494ca11e Initial load
duke
parents:
diff changeset
  2169
06bc494ca11e Initial load
duke
parents:
diff changeset
  2170
compiler.err.premature.eof=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2171
    reached end of file while parsing
06bc494ca11e Initial load
duke
parents:
diff changeset
  2172
57724
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2173
compiler.err.enum.constant.expected=\
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2174
    enum constant expected here
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2175
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2176
compiler.err.enum.constant.not.expected=\
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2177
    enum constant not expected here
447d48371b41 8228647: Broken enum produce inconvenient errors and AST
jlahoda
parents: 55528
diff changeset
  2178
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2179
## The following are related in form, but do not easily fit the above paradigm.
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  2180
compiler.err.expected.module=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  2181
    ''module'' expected
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  2182
43584
63e67712246b 8166420: Confusing error message when reading bad module declaration
sadayapalam
parents: 43577
diff changeset
  2183
compiler.err.expected.module.or.open=\
63e67712246b 8166420: Confusing error message when reading bad module declaration
sadayapalam
parents: 43577
diff changeset
  2184
    ''module'' or ''open'' expected
63e67712246b 8166420: Confusing error message when reading bad module declaration
sadayapalam
parents: 43577
diff changeset
  2185
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2186
compiler.err.dot.class.expected=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2187
    ''.class'' expected
06bc494ca11e Initial load
duke
parents:
diff changeset
  2188
06bc494ca11e Initial load
duke
parents:
diff changeset
  2189
## The argument to this string will always be either 'case' or 'default'.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2190
# 0: token
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2191
compiler.err.orphaned=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2192
    orphaned {0}
06bc494ca11e Initial load
duke
parents:
diff changeset
  2193
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2194
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2195
compiler.misc.anonymous.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2196
    <anonymous {0}>
06bc494ca11e Initial load
duke
parents:
diff changeset
  2197
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2198
# 0: name, 1: type
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2199
compiler.misc.type.captureof=\
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2200
    capture#{0} of {1}
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2201
2221
cd6557bcaa0a 6799605: Basic/Raw formatters should use type/symbol printer instead of toString()
mcimadamore
parents: 2085
diff changeset
  2202
compiler.misc.type.captureof.1=\
cd6557bcaa0a 6799605: Basic/Raw formatters should use type/symbol printer instead of toString()
mcimadamore
parents: 2085
diff changeset
  2203
    capture#{0}
cd6557bcaa0a 6799605: Basic/Raw formatters should use type/symbol printer instead of toString()
mcimadamore
parents: 2085
diff changeset
  2204
1357
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2205
compiler.misc.type.none=\
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2206
    <none>
e2d4f3e1f805 6735840: Need a type/symbol visitor printer
mcimadamore
parents: 1045
diff changeset
  2207
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2208
compiler.misc.unnamed.package=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2209
    unnamed package
06bc494ca11e Initial load
duke
parents:
diff changeset
  2210
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2211
compiler.misc.unnamed.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2212
    unnamed module
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2213
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2214
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2215
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2216
# 0: symbol, 1: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2217
compiler.err.cant.access=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2218
    cannot access {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2219
    {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2220
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  2221
# 0: name
23790
0697e38017ec 6898851: Compiling against this corrupt class file causes a stacktrace from javac
pgovereau
parents: 23133
diff changeset
  2222
compiler.misc.bad.class.file=\
0697e38017ec 6898851: Compiling against this corrupt class file causes a stacktrace from javac
pgovereau
parents: 23133
diff changeset
  2223
    class file is invalid for class {0}
0697e38017ec 6898851: Compiling against this corrupt class file causes a stacktrace from javac
pgovereau
parents: 23133
diff changeset
  2224
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  2225
# 0: file name, 1: string (expected constant pool entry type), 2: number (constant pool index)
24068
d8a1180faaa9 8038023: Compiler crash ClassCastException
pgovereau
parents: 24066
diff changeset
  2226
compiler.misc.bad.const.pool.entry=\
d8a1180faaa9 8038023: Compiler crash ClassCastException
pgovereau
parents: 24066
diff changeset
  2227
    bad constant pool entry in {0}\n\
d8a1180faaa9 8038023: Compiler crash ClassCastException
pgovereau
parents: 24066
diff changeset
  2228
    expected {1} at index {2}
d8a1180faaa9 8038023: Compiler crash ClassCastException
pgovereau
parents: 24066
diff changeset
  2229
54568
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 54332
diff changeset
  2230
# 0: file name, 1: number (constant pool index), 2: number (constant pool size)
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 54332
diff changeset
  2231
compiler.misc.bad.const.pool.index=\
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 54332
diff changeset
  2232
    bad constant pool index in {0}\n\
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 54332
diff changeset
  2233
    index {1} is not within pool size {2}.
b2ed96c35687 8222289: Overhaul logic for reading/writing constant pool entries
mcimadamore
parents: 54332
diff changeset
  2234
21006
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2235
# 0: file name, 1: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2236
compiler.misc.bad.class.file.header=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2237
    bad class file: {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2238
    {1}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2239
    Please remove or make sure it appears in the correct subdirectory of the classpath.
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2240
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2241
# 0: file name, 1: message segment
169
ff76730e430e 6668794: javac puts localized text in raw diagnostics
jjg
parents: 10
diff changeset
  2242
compiler.misc.bad.source.file.header=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2243
    bad source file: {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2244
    {1}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2245
    Please remove or make sure it appears in the correct subdirectory of the sourcepath.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2246
06bc494ca11e Initial load
duke
parents:
diff changeset
  2247
## The following are all possible strings for the second argument ({1}) of the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2248
## above strings.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2249
compiler.misc.bad.class.signature=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2250
    bad class signature: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2251
9077
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2252
#0: symbol, 1: symbol
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2253
compiler.misc.bad.enclosing.class=\
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2254
    bad enclosing class for {0}: {1}
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2255
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2256
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2257
compiler.misc.bad.enclosing.method=\
9077
6ee59e40b258 7031108: NPE in javac.jvm.ClassReader.findMethod in PackageElement.enclosedElements from AP in incr build
jjg
parents: 9076
diff changeset
  2258
    bad enclosing method attribute for class {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2259
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2260
compiler.misc.bad.runtime.invisible.param.annotations=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2261
    bad RuntimeInvisibleParameterAnnotations attribute: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2262
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2263
compiler.misc.bad.const.pool.tag=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2264
    bad constant pool tag: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2265
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2266
compiler.misc.bad.const.pool.tag.at=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2267
    bad constant pool tag: {0} at {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2268
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2269
compiler.misc.bad.signature=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2270
    bad signature: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2271
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2272
compiler.misc.bad.type.annotation.value=\
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2273
    bad type annotation target type value: {0}
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2274
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2275
compiler.misc.bad.module-info.name=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2276
    bad class name
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2277
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2278
compiler.misc.class.file.wrong.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2279
    class file contains wrong class: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2280
39361
cd0aca7db174 8159439: javac throws NPE with Module attribute and super_class != 0
vromero
parents: 38827
diff changeset
  2281
compiler.misc.module.info.invalid.super.class=\
cd0aca7db174 8159439: javac throws NPE with Module attribute and super_class != 0
vromero
parents: 38827
diff changeset
  2282
    module-info with invalid super class
cd0aca7db174 8159439: javac throws NPE with Module attribute and super_class != 0
vromero
parents: 38827
diff changeset
  2283
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2284
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2285
compiler.misc.class.file.not.found=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2286
    class file for {0} not found
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2287
42973
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2288
# 0: string (constant value), 1: symbol (constant field), 2: type (field type)
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2289
compiler.misc.bad.constant.range=\
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2290
    constant value ''{0}'' for {1} is outside the expected range for {2}
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2291
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2292
# 0: string (constant value), 1: symbol (constant field), 2: string (expected class)
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2293
compiler.misc.bad.constant.value=\
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2294
    bad constant value ''{0}'' for {1}, expected {2}
3795332b55c7 8171132: Improve class reading of invalid or out-of-range ConstantValue attributes
cushon
parents: 42837
diff changeset
  2295
57725
ffc34eaf7b49 8228502: javac crashed on a broken classfile with ConstantValue attribute on a field of type Object
jlahoda
parents: 57724
diff changeset
  2296
# 0: type (field type)
ffc34eaf7b49 8228502: javac crashed on a broken classfile with ConstantValue attribute on a field of type Object
jlahoda
parents: 57724
diff changeset
  2297
compiler.misc.bad.constant.value.type=\
ffc34eaf7b49 8228502: javac crashed on a broken classfile with ConstantValue attribute on a field of type Object
jlahoda
parents: 57724
diff changeset
  2298
    variable of type ''{0}'' cannot have a constant value, but has one specified
ffc34eaf7b49 8228502: javac crashed on a broken classfile with ConstantValue attribute on a field of type Object
jlahoda
parents: 57724
diff changeset
  2299
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  2300
# 0: string (classfile major version), 1: string (classfile minor version)
21006
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2301
compiler.misc.invalid.default.interface=\
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2302
    default method found in version {0}.{1} classfile
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2303
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  2304
# 0: string (classfile major version), 1: string (classfile minor version)
21006
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2305
compiler.misc.invalid.static.interface=\
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2306
    static method found in version {0}.{1} classfile
534673718919 8025087: Annotation processing api returns default modifier for interface static method
jlahoda
parents: 20609
diff changeset
  2307
40502
59dadf1bedbe 8157512: AssertionError in javac when module-info < v53.0
sadayapalam
parents: 40501
diff changeset
  2308
# 0: string (classfile major version), 1: string (classfile minor version)
59dadf1bedbe 8157512: AssertionError in javac when module-info < v53.0
sadayapalam
parents: 40501
diff changeset
  2309
compiler.misc.anachronistic.module.info=\
59dadf1bedbe 8157512: AssertionError in javac when module-info < v53.0
sadayapalam
parents: 40501
diff changeset
  2310
    module declaration found in version {0}.{1} classfile
59dadf1bedbe 8157512: AssertionError in javac when module-info < v53.0
sadayapalam
parents: 40501
diff changeset
  2311
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2312
# 0: name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2313
compiler.misc.file.doesnt.contain.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2314
    file does not contain class {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2315
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2316
# 0: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2317
compiler.misc.file.does.not.contain.package=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2318
    file does not contain package {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2319
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2320
compiler.misc.file.does.not.contain.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2321
    file does not contain module declaration
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2322
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2323
compiler.misc.illegal.start.of.class.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2324
    illegal start of class file
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2325
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2326
compiler.misc.unable.to.access.file=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2327
    unable to access file: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2328
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2329
compiler.misc.unicode.str.not.supported=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2330
    unicode string in class file not supported
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2331
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2332
compiler.misc.undecl.type.var=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2333
    undeclared type variable: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2334
29551
cad66be66e2e 8071847: java.lang.NullPointerException at com.sun.tools.javac.code.Types.elemtype(Types.java:1870)
sadayapalam
parents: 29293
diff changeset
  2335
compiler.misc.malformed.vararg.method=\
cad66be66e2e 8071847: java.lang.NullPointerException at com.sun.tools.javac.code.Types.elemtype(Types.java:1870)
sadayapalam
parents: 29293
diff changeset
  2336
    class file contains malformed variable arity method: {0}
cad66be66e2e 8071847: java.lang.NullPointerException at com.sun.tools.javac.code.Types.elemtype(Types.java:1870)
sadayapalam
parents: 29293
diff changeset
  2337
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2338
compiler.misc.wrong.version=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2339
    class file has wrong version {0}.{1}, should be {2}.{3}
06bc494ca11e Initial load
duke
parents:
diff changeset
  2340
06bc494ca11e Initial load
duke
parents:
diff changeset
  2341
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2342
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2343
# 0: type, 1: type or symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2344
compiler.err.not.within.bounds=\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2345
    type argument {0} is not within bounds of type-variable {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2346
06bc494ca11e Initial load
duke
parents:
diff changeset
  2347
## The following are all possible strings for the second argument ({1}) of the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2348
## above string.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2349
06bc494ca11e Initial load
duke
parents:
diff changeset
  2350
## none yet...
06bc494ca11e Initial load
duke
parents:
diff changeset
  2351
06bc494ca11e Initial load
duke
parents:
diff changeset
  2352
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2353
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2354
# 0: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2355
compiler.err.prob.found.req=\
12334
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  2356
    incompatible types: {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2357
17582
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  2358
# 0: message segment
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  2359
compiler.misc.prob.found.req=\
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  2360
    incompatible types: {0}
4079713129dd 8012003: Method diagnostics resolution need to be simplified in some cases
mcimadamore
parents: 17578
diff changeset
  2361
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2362
# 0: message segment, 1: type, 2: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2363
compiler.warn.prob.found.req=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2364
    {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2365
    required: {2}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2366
    found:    {1}
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2367
12334
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  2368
# 0: type, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2369
compiler.misc.inconvertible.types=\
12334
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  2370
    {0} cannot be converted to {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2371
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2372
# 0: type, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2373
compiler.misc.possible.loss.of.precision=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2374
    possible lossy conversion from {0} to {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2375
06bc494ca11e Initial load
duke
parents:
diff changeset
  2376
compiler.misc.unchecked.assign=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2377
    unchecked conversion
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2378
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2379
# compiler.misc.storecheck=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2380
#     assignment might cause later store checks to fail
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2381
# compiler.misc.unchecked=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2382
#     assigned array cannot dynamically check its stores
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2383
compiler.misc.unchecked.cast.to.type=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2384
    unchecked cast
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2385
06bc494ca11e Initial load
duke
parents:
diff changeset
  2386
# compiler.err.star.expected=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2387
#     ''*'' expected
06bc494ca11e Initial load
duke
parents:
diff changeset
  2388
# compiler.err.no.elem.type=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2389
#     \[\*\] cannot have a type
06bc494ca11e Initial load
duke
parents:
diff changeset
  2390
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2391
# 0: message segment
7211
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  2392
compiler.misc.try.not.applicable.to.type=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2393
    try-with-resources not applicable to variable type\n\
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2394
    ({0})
7211
163fe60f63de 6970016: Clean up ARM/try-with-resources implementation
mcimadamore
parents: 7203
diff changeset
  2395
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2396
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2397
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2398
# 0: object, 1: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2399
compiler.err.type.found.req=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2400
    unexpected type\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2401
    required: {1}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2402
    found:    {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2403
06bc494ca11e Initial load
duke
parents:
diff changeset
  2404
## The following are all possible strings for the first argument ({0}) of the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2405
## above string.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2406
compiler.misc.type.req.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2407
    class
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2408
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2409
compiler.misc.type.req.class.array=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2410
    class or array
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2411
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2412
compiler.misc.type.req.array.or.iterable=\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2413
    array or java.lang.Iterable
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2414
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2415
compiler.misc.type.req.ref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2416
    reference
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2417
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2418
compiler.misc.type.req.exact=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2419
    class or interface without bounds
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2420
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2421
# 0: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2422
compiler.misc.type.parameter=\
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2423
    type parameter {0}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2424
06bc494ca11e Initial load
duke
parents:
diff changeset
  2425
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2426
06bc494ca11e Initial load
duke
parents:
diff changeset
  2427
## The following are all possible strings for the last argument of all those
06bc494ca11e Initial load
duke
parents:
diff changeset
  2428
## diagnostics whose key ends in ".1"
12334
29e1bfdcba4e 7151492: Encapsulate check logic into Attr.ResultInfo
mcimadamore
parents: 11707
diff changeset
  2429
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2430
# 0: type, 1: list of type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2431
compiler.misc.no.unique.maximal.instance.exists=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2432
    no unique maximal instance exists for type variable {0} with upper bounds {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2433
49872
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2434
# 0: type, 1: list of type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2435
compiler.misc.no.unique.minimal.instance.exists=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2436
    no unique minimal instance exists for type variable {0} with lower bounds {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2437
10628
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 10626
diff changeset
  2438
# 0: type, 1: list of type
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 10626
diff changeset
  2439
compiler.misc.incompatible.upper.bounds=\
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 10626
diff changeset
  2440
    inference variable {0} has incompatible upper bounds {1}
dca7012223bc 7086601: Error message bug: cause for method mismatch is 'null'
mcimadamore
parents: 10626
diff changeset
  2441
30014
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  2442
# 0: type, 1: list of type
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  2443
compiler.misc.incompatible.eq.bounds=\
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  2444
    inference variable {0} has incompatible equality constraints {1}
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  2445
49872
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2446
# 0: type, 1: fragment, 2: fragment
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2447
compiler.misc.incompatible.bounds=\
30014
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  2448
    inference variable {0} has incompatible bounds\n\
49872
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2449
    {1}\n\
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2450
    {2}
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2451
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2452
# 0: list of type
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2453
compiler.misc.lower.bounds=\
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2454
        lower bounds: {0}
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2455
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2456
# 0: list of type
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2457
compiler.misc.eq.bounds=\
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2458
        equality constraints: {0}
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2459
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2460
# 0: list of type
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2461
compiler.misc.upper.bounds=\
0798eab12791 8201281: Truncated error message with Incompatible : null
vromero
parents: 49822
diff changeset
  2462
        lower bounds: {0}
14048
308d1cf8fe46 7177306: Regression: unchecked method call does not erase return type
mcimadamore
parents: 13689
diff changeset
  2463
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2464
# 0: list of type, 1: type, 2: type
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2465
compiler.misc.infer.no.conforming.instance.exists=\
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2466
    no instance(s) of type variable(s) {0} exist so that {1} conforms to {2}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2467
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2468
# 0: list of type, 1: message segment
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2469
compiler.misc.infer.no.conforming.assignment.exists=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2470
    cannot infer type-variable(s) {0}\n\
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2471
    (argument mismatch; {1})
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2472
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2473
# 0: list of type
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2474
compiler.misc.infer.arg.length.mismatch=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2475
    cannot infer type-variable(s) {0}\n\
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2476
    (actual and formal argument lists differ in length)
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2477
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2478
# 0: list of type, 1: message segment
11707
532f41763bc9 7129801: Merge the two method applicability routines
mcimadamore
parents: 11383
diff changeset
  2479
compiler.misc.infer.varargs.argument.mismatch=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2480
    cannot infer type-variable(s) {0}\n\
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2481
    (varargs mismatch; {1})
11707
532f41763bc9 7129801: Merge the two method applicability routines
mcimadamore
parents: 11383
diff changeset
  2482
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2483
# 0: type, 1: list of type
12468
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2484
compiler.misc.inferred.do.not.conform.to.upper.bounds=\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2485
    inferred type does not conform to upper bound(s)\n\
3140
15a274b13051 6638712: Inference with wildcard types causes selection of inapplicable method
mcimadamore
parents: 2984
diff changeset
  2486
    inferred: {0}\n\
12468
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2487
    upper bound(s): {1}
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2488
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2489
# 0: type, 1: list of type
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2490
compiler.misc.inferred.do.not.conform.to.lower.bounds=\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2491
    inferred type does not conform to lower bound(s)\n\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2492
    inferred: {0}\n\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2493
    lower bound(s): {1}
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2494
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2495
# 0: type, 1: list of type
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2496
compiler.misc.inferred.do.not.conform.to.eq.bounds=\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2497
    inferred type does not conform to equality constraint(s)\n\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2498
    inferred: {0}\n\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  2499
    equality constraints(s): {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2500
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2501
# 0: symbol
5321
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  2502
compiler.misc.diamond=\
c8efe769cb3b 6939620: Switch to 'complex' diamond inference scheme
mcimadamore
parents: 5320
diff changeset
  2503
    {0}<>
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2504
8431
21758b2bba40 7020043: Project Coin: diamond allowed on non-generic type
mcimadamore
parents: 8428
diff changeset
  2505
# 0: type
21758b2bba40 7020043: Project Coin: diamond allowed on non-generic type
mcimadamore
parents: 8428
diff changeset
  2506
compiler.misc.diamond.non.generic=\
21758b2bba40 7020043: Project Coin: diamond allowed on non-generic type
mcimadamore
parents: 8428
diff changeset
  2507
    cannot use ''<>'' with non-generic class {0}
21758b2bba40 7020043: Project Coin: diamond allowed on non-generic type
mcimadamore
parents: 8428
diff changeset
  2508
29776
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2509
# 0: list of type, 1: message segment
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2510
compiler.misc.diamond.invalid.arg=\
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2511
    type argument {0} inferred for {1} is not allowed in this context\n\
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2512
    inferred argument is not expressible in the Signature attribute
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2513
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2514
# 0: list of type, 1: message segment
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2515
compiler.misc.diamond.invalid.args=\
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2516
    type arguments {0} inferred for {1} are not allowed in this context\n\
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2517
    inferred arguments are not expressible in the Signature attribute
984a79b71cfe 8062373: Project Coin: diamond and anonymous classes
sadayapalam
parents: 29551
diff changeset
  2518
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2519
# 0: type
9604
d7152128d22f 7039931: Project Coin: diamond inference fail with generic constructor explicit type-arguments
mcimadamore
parents: 9603
diff changeset
  2520
compiler.misc.diamond.and.explicit.params=\
d7152128d22f 7039931: Project Coin: diamond inference fail with generic constructor explicit type-arguments
mcimadamore
parents: 9603
diff changeset
  2521
    cannot use ''<>'' with explicit type parameters for constructor
d7152128d22f 7039931: Project Coin: diamond inference fail with generic constructor explicit type-arguments
mcimadamore
parents: 9603
diff changeset
  2522
19918
3bdf0c6b869c 8023549: Compiler emitting spurious errors when constructor reference type is inferred and explicit type arguments are supplied
vromero
parents: 19914
diff changeset
  2523
compiler.misc.mref.infer.and.explicit.params=\
3bdf0c6b869c 8023549: Compiler emitting spurious errors when constructor reference type is inferred and explicit type arguments are supplied
vromero
parents: 19914
diff changeset
  2524
    cannot use raw constructor reference with explicit type parameters for constructor
3bdf0c6b869c 8023549: Compiler emitting spurious errors when constructor reference type is inferred and explicit type arguments are supplied
vromero
parents: 19914
diff changeset
  2525
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2526
# 0: type, 1: list of type
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2527
compiler.misc.explicit.param.do.not.conform.to.bounds=\
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2528
    explicit type argument {0} does not conform to declared bound(s) {1}
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2529
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2530
compiler.misc.arg.length.mismatch=\
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2531
    actual and formal argument lists differ in length
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2532
41943
a4ee110842fb 8169093: Generics, javac not matching actual and formal arguments.
mcimadamore
parents: 41942
diff changeset
  2533
# 0: string
a4ee110842fb 8169093: Generics, javac not matching actual and formal arguments.
mcimadamore
parents: 41942
diff changeset
  2534
compiler.misc.wrong.number.type.args=\
a4ee110842fb 8169093: Generics, javac not matching actual and formal arguments.
mcimadamore
parents: 41942
diff changeset
  2535
    wrong number of type arguments; required {0}
a4ee110842fb 8169093: Generics, javac not matching actual and formal arguments.
mcimadamore
parents: 41942
diff changeset
  2536
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2537
# 0: message segment
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2538
compiler.misc.no.conforming.assignment.exists=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2539
    argument mismatch; {0}
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2540
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2541
# 0: message segment
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2542
compiler.misc.varargs.argument.mismatch=\
13438
83729994273a 7175911: Simplify error reporting API in Check.CheckContext interface
mcimadamore
parents: 12915
diff changeset
  2543
    varargs mismatch; {0}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2544
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2545
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2546
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2547
# 0: symbol or type, 1: file name
14369
3d660d08d1f7 7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents: 14267
diff changeset
  2548
compiler.warn.auxiliary.class.accessed.from.outside.of.its.source.file=\
3d660d08d1f7 7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents: 14267
diff changeset
  2549
    auxiliary class {0} in {1} should not be accessed from outside its own source file
3d660d08d1f7 7153951: Add new lint option -Xlint:auxiliaryclass
ohrstrom
parents: 14267
diff changeset
  2550
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2551
## The first argument ({0}) is a "kindname".
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2552
# 0: kind name, 1: symbol, 2: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2553
compiler.err.abstract.cant.be.accessed.directly=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2554
    abstract {0} {1} in {2} cannot be accessed directly
06bc494ca11e Initial load
duke
parents:
diff changeset
  2555
06bc494ca11e Initial load
duke
parents:
diff changeset
  2556
## The first argument ({0}) is a "kindname".
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2557
# 0: symbol kind, 1: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2558
compiler.err.non-static.cant.be.ref=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2559
    non-static {0} {1} cannot be referenced from a static context
06bc494ca11e Initial load
duke
parents:
diff changeset
  2560
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2561
# 0: symbol kind, 1: symbol
28456
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2562
compiler.misc.bad.static.method.in.unbound.lookup=\
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2563
    unexpected static {0} {1} found in unbound lookup
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2564
16323
c4409c235642 8008537: Missing method reference lookup error when unbound search finds a static method
mcimadamore
parents: 16320
diff changeset
  2565
# 0: symbol kind, 1: symbol
28456
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2566
compiler.misc.bad.instance.method.in.unbound.lookup=\
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2567
    unexpected instance {0} {1} found in unbound lookup
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2568
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2569
# 0: symbol kind, 1: symbol
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2570
compiler.misc.bad.static.method.in.bound.lookup=\
b87fdde1404d 8068995: Cleanup method reference lookup code
mcimadamore
parents: 28334
diff changeset
  2571
    unexpected static {0} {1} found in bound lookup
16323
c4409c235642 8008537: Missing method reference lookup error when unbound search finds a static method
mcimadamore
parents: 16320
diff changeset
  2572
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2573
## Both arguments ({0}, {1}) are "kindname"s.  {0} is a comma-separated list
06bc494ca11e Initial load
duke
parents:
diff changeset
  2574
## of kindnames (the list should be identical to that provided in source.
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2575
# 0: set of kind name, 1: set of kind name
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2576
compiler.err.unexpected.type=\
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2577
    unexpected type\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2578
    required: {0}\n\
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2579
    found:    {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2580
14058
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
  2581
compiler.err.unexpected.lambda=\
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
  2582
   lambda expression not expected here
c7ec7facdd20 7177385: Add attribution support for lambda expressions
mcimadamore
parents: 14057
diff changeset
  2583
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2584
compiler.err.unexpected.mref=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2585
   method reference not expected here
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2586
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2587
## The first argument {0} is a "kindname" (e.g. 'constructor', 'field', etc.)
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2588
## The second argument {1} is the non-resolved symbol
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2589
## The third argument {2} is a list of type parameters (non-empty if {1} is a method)
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2590
## The fourth argument {3} is a list of argument types (non-empty if {1} is a method)
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2591
# 0: kind name, 1: name, 2: unused, 3: unused
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2592
compiler.err.cant.resolve=\
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2593
    cannot find symbol\n\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2594
    symbol: {0} {1}
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2595
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2596
# 0: kind name, 1: name, 2: unused, 3: list of type
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2597
compiler.err.cant.resolve.args=\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2598
    cannot find symbol\n\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2599
    symbol: {0} {1}({3})
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2600
50086
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
  2601
# 0: kind name, 1: name, 2: unused, 3: list of type
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
  2602
compiler.misc.cant.resolve.args=\
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
  2603
    cannot find symbol\n\
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
  2604
    symbol: {0} {1}({3})
66b0f0134aad 8194998: broken error message for subclass of interface with private method
vromero
parents: 49872
diff changeset
  2605
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2606
# 0: kind name, 1: name, 2: list of type, 3: list of type
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2607
compiler.err.cant.resolve.args.params=\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2608
    cannot find symbol\n\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2609
    symbol: {0} <{2}>{1}({3})
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2610
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2611
## arguments from {0} to {3} have the same meaning as above
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2612
## The fifth argument {4} is a location subdiagnostic (see below)
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2613
# 0: kind name, 1: name, 2: unused, 3: unused, 4: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2614
compiler.err.cant.resolve.location=\
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2615
    cannot find symbol\n\
2085
4792e12a8ca2 6769027: Source line should be displayed immediately after the first diagnostic line
mcimadamore
parents: 1996
diff changeset
  2616
    symbol:   {0} {1}\n\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2617
    location: {4}
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2618
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2619
# 0: kind name, 1: name, 2: unused, 3: list of type, 4: message segment
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2620
compiler.err.cant.resolve.location.args=\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2621
    cannot find symbol\n\
2085
4792e12a8ca2 6769027: Source line should be displayed immediately after the first diagnostic line
mcimadamore
parents: 1996
diff changeset
  2622
    symbol:   {0} {1}({3})\n\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2623
    location: {4}
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2624
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2625
# 0: kind name, 1: name, 2: list of type, 3: list, 4: message segment
939
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2626
compiler.err.cant.resolve.location.args.params=\
38e24969c7e9 6717241: some diagnostic argument is prematurely converted into a String object
mcimadamore
parents: 735
diff changeset
  2627
    cannot find symbol\n\
2085
4792e12a8ca2 6769027: Source line should be displayed immediately after the first diagnostic line
mcimadamore
parents: 1996
diff changeset
  2628
    symbol:   {0} <{2}>{1}({3})\n\
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2629
    location: {4}
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2630
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2631
### Following are replicated/used for method reference diagnostics
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2632
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2633
# 0: kind name, 1: name, 2: unused, 3: list of type, 4: message segment
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2634
compiler.misc.cant.resolve.location.args=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2635
    cannot find symbol\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2636
    symbol:   {0} {1}({3})\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2637
    location: {4}
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2638
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2639
# 0: kind name, 1: name, 2: list of type, 3: list, 4: message segment
14062
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2640
compiler.misc.cant.resolve.location.args.params=\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2641
    cannot find symbol\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2642
    symbol:   {0} <{2}>{1}({3})\n\
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2643
    location: {4}
b7439971a094 7177386: Add attribution support for method references
mcimadamore
parents: 14058
diff changeset
  2644
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2645
##a location subdiagnostic is composed as follows:
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2646
## The first argument {0} is the location "kindname" (e.g. 'constructor', 'field', etc.)
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2647
## The second argument {1} is the location name
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2648
## The third argument {2} is the location type (only when {1} is a variable name)
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2649
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2650
# 0: kind name, 1: type or symbol, 2: unused
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2651
compiler.misc.location=\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2652
    {0} {1}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2653
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2654
# 0: kind name, 1: symbol, 2: type
8045
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2655
compiler.misc.location.1=\
df2ca0edfbaa 6968793: issues with diagnostics
mcimadamore
parents: 8038
diff changeset
  2656
    {0} {1} of type {2}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2657
06bc494ca11e Initial load
duke
parents:
diff changeset
  2658
## The following are all possible string for "kindname".
06bc494ca11e Initial load
duke
parents:
diff changeset
  2659
## They should be called whatever the JLS calls them after it been translated
06bc494ca11e Initial load
duke
parents:
diff changeset
  2660
## to the appropriate language.
06bc494ca11e Initial load
duke
parents:
diff changeset
  2661
# compiler.misc.kindname.constructor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2662
#     static member
06bc494ca11e Initial load
duke
parents:
diff changeset
  2663
compiler.misc.kindname.annotation=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2664
    @interface
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2665
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2666
compiler.misc.kindname.constructor=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2667
    constructor
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2668
6031
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5848
diff changeset
  2669
compiler.misc.kindname.enum=\
50004868a787 6964768: need test program to validate javac resource bundles
jjg
parents: 5848
diff changeset
  2670
    enum
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2671
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2672
compiler.misc.kindname.interface=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2673
    interface
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2674
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2675
compiler.misc.kindname.static=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2676
    static
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2677
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2678
compiler.misc.kindname.type.variable=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2679
    type variable
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2680
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2681
compiler.misc.kindname.type.variable.bound=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2682
    bound of type variable
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2683
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2684
compiler.misc.kindname.variable=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2685
    variable
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2686
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2687
compiler.misc.kindname.value=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2688
    value
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2689
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2690
compiler.misc.kindname.method=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2691
    method
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2692
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2693
compiler.misc.kindname.class=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2694
    class
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2695
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2696
compiler.misc.kindname.package=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2697
    package
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2698
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2699
compiler.misc.kindname.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2700
    module
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2701
10626
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2702
compiler.misc.kindname.static.init=\
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2703
    static initializer
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2704
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2705
compiler.misc.kindname.instance.init=\
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2706
    instance initializer
83f0c2860f5b 7086595: Error message bug: name of initializer is 'null'
mcimadamore
parents: 10199
diff changeset
  2707
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2708
#####
06bc494ca11e Initial load
duke
parents:
diff changeset
  2709
1534
e923a41e84cc 6758789: Some method resolution diagnostic should be improved
mcimadamore
parents: 1358
diff changeset
  2710
compiler.misc.no.args=\
e923a41e84cc 6758789: Some method resolution diagnostic should be improved
mcimadamore
parents: 1358
diff changeset
  2711
    no arguments
e923a41e84cc 6758789: Some method resolution diagnostic should be improved
mcimadamore
parents: 1358
diff changeset
  2712
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2713
# 0: message segment
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2714
compiler.err.override.static=\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2715
    {0}\n\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2716
    overriding method is static
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2717
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2718
# 0: message segment, 1: set of flag
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2719
compiler.err.override.meth=\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2720
    {0}\n\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2721
    overridden method is {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2722
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2723
# 0: message segment, 1: type
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2724
compiler.err.override.meth.doesnt.throw=\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2725
    {0}\n\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2726
    overridden method does not throw {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2727
06bc494ca11e Initial load
duke
parents:
diff changeset
  2728
# In the following string {1} is a space separated list of Java Keywords, as
06bc494ca11e Initial load
duke
parents:
diff changeset
  2729
# they would have been declared in the source code
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2730
# 0: message segment, 1: set of flag or string
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2731
compiler.err.override.weaker.access=\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2732
    {0}\n\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2733
    attempting to assign weaker access privileges; was {1}
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2734
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2735
# 0: message segment, 1: type, 2: type
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2736
compiler.err.override.incompatible.ret=\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2737
    {0}\n\
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2738
    return type {1} is not compatible with {2}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2739
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2740
# 0: message segment, 1: type, 2: type
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2741
compiler.warn.override.unchecked.ret=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2742
    {0}\n\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2743
    return type requires unchecked conversion from {1} to {2}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2744
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2745
# 0: message segment, 1: type
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2746
compiler.warn.override.unchecked.thrown=\
6151
dd513881e71d 6957438: improve code for generating warning messages containing option names
jjg
parents: 6148
diff changeset
  2747
    {0}\n\
3560
bbfccbd92afe 6199153: Generic throws and overriding
mcimadamore
parents: 3557
diff changeset
  2748
    overridden method does not throw {1}
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2749
16333
a6e1ded87200 8009138: javac, equals-hashCode warning tuning
vromero
parents: 16328
diff changeset
  2750
# 0: symbol
16301
b6fd735ea78e 6563143: javac should issue a warning for overriding equals without hashCode
vromero
parents: 16294
diff changeset
  2751
compiler.warn.override.equals.but.not.hashcode=\
16320
92ba27b7aaf3 8008436: javac should not issue a warning for overriding equals without hasCode if hashCode has been overriden by a superclass
vromero
parents: 16316
diff changeset
  2752
    Class {0} overrides equals, but neither it nor any superclass overrides hashCode method
16301
b6fd735ea78e 6563143: javac should issue a warning for overriding equals without hashCode
vromero
parents: 16294
diff changeset
  2753
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2754
## The following are all possible strings for the first argument ({0}) of the
06bc494ca11e Initial load
duke
parents:
diff changeset
  2755
## above strings.
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2756
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2757
compiler.misc.cant.override=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2758
    {0} in {1} cannot override {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2759
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2760
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
33713
dc1d2632935c 8139255: javac reports "cannot override" messages instead of "cannot hide" messages for static methods
sadayapalam
parents: 30069
diff changeset
  2761
compiler.misc.cant.hide=\
dc1d2632935c 8139255: javac reports "cannot override" messages instead of "cannot hide" messages for static methods
sadayapalam
parents: 30069
diff changeset
  2762
    {0} in {1} cannot hide {2} in {3}
dc1d2632935c 8139255: javac reports "cannot override" messages instead of "cannot hide" messages for static methods
sadayapalam
parents: 30069
diff changeset
  2763
dc1d2632935c 8139255: javac reports "cannot override" messages instead of "cannot hide" messages for static methods
sadayapalam
parents: 30069
diff changeset
  2764
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2765
compiler.misc.cant.implement=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2766
    {0} in {1} cannot implement {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2767
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2768
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2769
compiler.misc.clashes.with=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2770
    {0} in {1} clashes with {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2771
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2772
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2773
compiler.misc.unchecked.override=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2774
    {0} in {1} overrides {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2775
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2776
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2777
compiler.misc.unchecked.implement=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2778
    {0} in {1} implements {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2779
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2780
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2781
compiler.misc.unchecked.clash.with=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2782
    {0} in {1} overrides {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2783
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2784
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2785
compiler.misc.varargs.override=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2786
    {0} in {1} overrides {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2787
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2788
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2789
compiler.misc.varargs.implement=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2790
    {0} in {1} implements {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2791
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2792
# 0: symbol, 1: symbol, 2: symbol, 3: symbol
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2793
compiler.misc.varargs.clash.with=\
06bc494ca11e Initial load
duke
parents:
diff changeset
  2794
    {0} in {1} overrides {2} in {3}
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  2795
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2796
# 0: kind name, 1: symbol, 2: symbol, 3: message segment
6710
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2797
compiler.misc.inapplicable.method=\
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2798
    {0} {1}.{2} is not applicable\n\
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2799
    ({3})
b14e6fe7b290 5088624: cannot find symbol message should be more intelligent
mcimadamore
parents: 6592
diff changeset
  2800
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2801
########################################
48054
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2802
# Diagnostics for language feature changes.
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2803
# Such diagnostics have a common template which can be customized by using a feature
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2804
# diagnostic fragment (one of those given below).
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2805
########################################
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  2806
48054
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2807
# 0: message segment (feature), 1: string (found version), 2: string (expected version)
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2808
compiler.err.feature.not.supported.in.source=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2809
   {0} is not supported in -source {1}\n\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2810
    (use -source {2} or higher to enable {0})
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2811
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2812
# 0: message segment (feature), 1: string (found version), 2: string (expected version)
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2813
compiler.err.feature.not.supported.in.source.plural=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2814
   {0} are not supported in -source {1}\n\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2815
    (use -source {2} or higher to enable {0})
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2816
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2817
# 0: message segment (feature), 1: string (found version), 2: string (expected version)
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2818
compiler.misc.feature.not.supported.in.source=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2819
   {0} is not supported in -source {1}\n\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2820
    (use -source {2} or higher to enable {0})
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2821
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2822
# 0: message segment (feature), 1: string (found version), 2: string (expected version)
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2823
compiler.misc.feature.not.supported.in.source.plural=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2824
   {0} are not supported in -source {1}\n\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2825
    (use -source {2} or higher to enable {0})
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2826
49580
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2827
# 0: message segment (feature)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2828
compiler.err.preview.feature.disabled=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2829
   {0} is a preview feature and is disabled by default.\n\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2830
   (use --enable-preview to enable {0})
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2831
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2832
# 0: message segment (feature)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2833
compiler.err.preview.feature.disabled.plural=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2834
   {0} are a preview feature and are disabled by default.\n\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2835
   (use --enable-preview to enable {0})
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2836
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2837
# 0: file object (classfile), 1: string (expected version)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2838
compiler.err.preview.feature.disabled.classfile=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2839
   classfile for {0} uses preview features of Java SE {1}.\n\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2840
   (use --enable-preview to allow loading of classfiles which contain preview features)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2841
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2842
# 0: message segment (feature)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2843
compiler.warn.preview.feature.use=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2844
   {0} is a preview feature and may be removed in a future release.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2845
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2846
# 0: message segment (feature)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2847
compiler.warn.preview.feature.use.plural=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2848
   {0} are a preview feature and may be removed in a future release.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2849
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2850
# 0: file object (classfile), 1: string (expected version)
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2851
compiler.warn.preview.feature.use.classfile=\
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2852
   classfile for {0} uses preview features of Java SE {1}.
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2853
62b908c9f0e6 8199194: Add javac support for preview features
mcimadamore
parents: 49543
diff changeset
  2854
48054
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2855
compiler.misc.feature.modules=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2856
    modules
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2857
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2858
compiler.misc.feature.diamond.and.anon.class=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2859
    ''<>'' with anonymous inner classes
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2860
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2861
compiler.misc.feature.var.in.try.with.resources=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2862
    variables in try-with-resources
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2863
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2864
compiler.misc.feature.type.annotations=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2865
    type annotations
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2866
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2867
compiler.misc.feature.annotations.after.type.params=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2868
    annotations after method type parameters
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2869
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2870
compiler.misc.feature.repeatable.annotations=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2871
    repeated annotations
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2872
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2873
compiler.misc.feature.diamond=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2874
    diamond operator
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2875
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2876
compiler.misc.feature.lambda=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2877
    lambda expressions
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2878
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2879
compiler.misc.feature.method.references=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2880
    method references
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2881
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2882
compiler.misc.feature.default.methods=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2883
    default methods
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2884
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2885
compiler.misc.feature.intersection.types.in.cast=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2886
    intersection types
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2887
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2888
compiler.misc.feature.static.intf.methods=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2889
    static interface methods
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2890
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2891
compiler.misc.feature.static.intf.method.invoke=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2892
    static interface method invocations
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2893
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2894
compiler.misc.feature.private.intf.methods=\
702043a4cdeb 8189749: Devise strategy for making source level checks more uniform
mcimadamore
parents: 47934
diff changeset
  2895
    private interface methods
27844
8b5d79870a2f 7196163: Project Coin: Allow effectively final variables to be used as resources in try-with-resources
jlahoda
parents: 27387
diff changeset
  2896
55263
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  2897
compiler.misc.feature.text.blocks=\
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  2898
    text blocks
830ca7b43b95 8223967: Implement Text Blocks (Preview) in the Java compiler
jlaskey
parents: 55027
diff changeset
  2899
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2900
compiler.misc.feature.multiple.case.labels=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2901
    multiple case labels
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2902
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2903
compiler.misc.feature.switch.rules=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2904
    switch rules
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2905
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2906
compiler.misc.feature.switch.expressions=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2907
    switch expressions
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  2908
52016
9ea22a0f9540 8211148: var in implicit lambdas shouldn't be accepted for source < 11
vromero
parents: 51713
diff changeset
  2909
compiler.misc.feature.var.syntax.in.implicit.lambda=\
9ea22a0f9540 8211148: var in implicit lambdas shouldn't be accepted for source < 11
vromero
parents: 51713
diff changeset
  2910
    var syntax in implicit lambdas
9ea22a0f9540 8211148: var in implicit lambdas shouldn't be accepted for source < 11
vromero
parents: 51713
diff changeset
  2911
15367
31b57f2b8d0b 8005852: Treatment of '_' as identifier
mcimadamore
parents: 15361
diff changeset
  2912
compiler.warn.underscore.as.identifier=\
27991
8f4b68523da3 8061549: Disallow _ as a one-character identifier
jlahoda
parents: 27844
diff changeset
  2913
    as of release 9, ''_'' is a keyword, and may not be used as an identifier
8f4b68523da3 8061549: Disallow _ as a one-character identifier
jlahoda
parents: 27844
diff changeset
  2914
8f4b68523da3 8061549: Disallow _ as a one-character identifier
jlahoda
parents: 27844
diff changeset
  2915
compiler.err.underscore.as.identifier=\
8f4b68523da3 8061549: Disallow _ as a one-character identifier
jlahoda
parents: 27844
diff changeset
  2916
    as of release 9, ''_'' is a keyword, and may not be used as an identifier
15367
31b57f2b8d0b 8005852: Treatment of '_' as identifier
mcimadamore
parents: 15361
diff changeset
  2917
20609
dce669916b62 8023679: Improve error message for '_' used as a lambda parameter name
vromero
parents: 19918
diff changeset
  2918
compiler.err.underscore.as.identifier.in.lambda=\
dce669916b62 8023679: Improve error message for '_' used as a lambda parameter name
vromero
parents: 19918
diff changeset
  2919
    ''_'' used as an identifier\n\
dce669916b62 8023679: Improve error message for '_' used as a lambda parameter name
vromero
parents: 19918
diff changeset
  2920
    (use of ''_'' as an identifier is forbidden for lambda parameters)
dce669916b62 8023679: Improve error message for '_' used as a lambda parameter name
vromero
parents: 19918
diff changeset
  2921
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2922
compiler.err.enum.as.identifier=\
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  2923
    as of release 5, ''enum'' is a keyword, and may not be used as an identifier
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2924
06bc494ca11e Initial load
duke
parents:
diff changeset
  2925
compiler.err.assert.as.identifier=\
25445
603f0c93d5c9 8011044: Remove support for 1.5 and earlier source and target options
ntoda
parents: 25283
diff changeset
  2926
    as of release 1.4, ''assert'' is a keyword, and may not be used as an identifier
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  2927
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2928
# TODO 308: make a better error message
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2929
compiler.err.this.as.identifier=\
49543
2d5d75263e77 8199744: Incorrect compiler message for ReceiverParameter in inner class constructor
vromero
parents: 49429
diff changeset
  2930
    as of release 8, ''this'' is allowed as the parameter name for the receiver type only\n\
2d5d75263e77 8199744: Incorrect compiler message for ReceiverParameter in inner class constructor
vromero
parents: 49429
diff changeset
  2931
    which has to be the first parameter, and cannot be a lambda parameter
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2932
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2933
compiler.err.receiver.parameter.not.applicable.constructor.toplevel.class=\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2934
    receiver parameter not applicable for constructor of top-level class
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2935
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2936
# TODO 308: make a better error message
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2937
# 0: annotation
21041
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21009
diff changeset
  2938
compiler.err.cant.type.annotate.scoping.1=\
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21009
diff changeset
  2939
    scoping construct cannot be annotated with type-use annotation: {0}
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2940
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2941
# TODO 308: make a better error message
45504
ea7475564d07 8170326: Inconsistencies between code, compiler.properties and comments
jlahoda
parents: 45500
diff changeset
  2942
# 0: list of annotation
21041
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21009
diff changeset
  2943
compiler.err.cant.type.annotate.scoping=\
99f5e5e97425 8026564: import changes from type-annotations forest
jjg
parents: 21009
diff changeset
  2944
    scoping construct cannot be annotated with type-use annotations: {0}
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2945
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2946
# 0: type, 1: type
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2947
compiler.err.incorrect.receiver.name=\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2948
    the receiver name does not match the enclosing class type\n\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2949
    required: {0}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
  2950
    found:    {1}
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2951
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2952
# 0: type, 1: type
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2953
compiler.err.incorrect.receiver.type=\
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2954
    the receiver type does not match the enclosing class type\n\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2955
    required: {0}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
  2956
    found:    {1}
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2957
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2958
# 0: type, 1: type
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2959
compiler.err.incorrect.constructor.receiver.type=\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2960
    the receiver type does not match the enclosing outer class type\n\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2961
    required: {0}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
  2962
    found:    {1}
17578
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2963
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2964
# 0: type, 1: type
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2965
compiler.err.incorrect.constructor.receiver.name=\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2966
    the receiver name does not match the enclosing outer class type\n\
46ac954e4a84 8013852: update reference impl for type-annotations
jjg
parents: 16809
diff changeset
  2967
    required: {0}\n\
54132
2ab55d39fb5b 8220644: Align required/found pairs in diagnostics
cushon
parents: 53755
diff changeset
  2968
    found:    {1}
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2969
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2970
compiler.err.no.annotations.on.dot.class=\
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2971
    no annotations are allowed in the type of a class literal
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 15377
diff changeset
  2972
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  2973
########################################
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2974
# Diagnostics for verbose resolution
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2975
# used by Resolve (debug only)
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2976
########################################
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2977
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2978
# 0: number, 1: symbol, 2: unused
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2979
compiler.misc.applicable.method.found=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2980
    #{0} applicable method found: {1}
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2981
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2982
# 0: number, 1: symbol, 2: message segment
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2983
compiler.misc.applicable.method.found.1=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2984
    #{0} applicable method found: {1}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2985
    ({2})
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2986
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2987
# 0: number, 1: symbol, 2: message segment
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2988
compiler.misc.not.applicable.method.found=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2989
    #{0} not applicable method found: {1}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2990
    ({2})
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2991
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2992
# 0: type
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2993
compiler.misc.partial.inst.sig=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2994
    partially instantiated to: {0}
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2995
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  2996
# 0: name, 1: symbol, 2: number, 3: string (method resolution phase), 4: list of type or message segment, 5: list of type or message segment
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2997
compiler.note.verbose.resolve.multi=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2998
    resolving method {0} in type {1} to candidate {2}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  2999
    phase: {3}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3000
    with actuals: {4}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3001
    with type-args: {5}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3002
    candidates:
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3003
28334
1633de6070ae 8058542: Devise scheme for better diagnostic creation
mcimadamore
parents: 28142
diff changeset
  3004
# 0: name, 1: symbol, 2: unused, 3: string (method resolution phase), 4: list of type or message segment, 5: list of type or message segment
10816
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3005
compiler.note.verbose.resolve.multi.1=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3006
    erroneous resolution for method {0} in type {1}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3007
    phase: {3}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3008
    with actuals: {4}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3009
    with type-args: {5}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3010
    candidates:
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3011
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3012
# 0: symbol, 1: type, 2: type
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3013
compiler.note.deferred.method.inst=\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3014
    Deferred instantiation of method {0}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3015
    instantiated signature: {1}\n\
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3016
    target-type: {2}
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3017
ce8a7e9d8882 7098660: Write better overload resolution/inference tests
mcimadamore
parents: 10637
diff changeset
  3018
########################################
49429
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3019
# Diagnostics for lambda deduplication
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3020
# used by LambdaToMethod (debug only)
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3021
########################################
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3022
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3023
# 0: symbol
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3024
compiler.note.verbose.l2m.deduplicate=\
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3025
    deduplicating lambda implementation method {0}
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3026
752ecccb0b7f 8200301: deduplicate lambda methods
cushon
parents: 48935
diff changeset
  3027
########################################
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3028
# Diagnostics for where clause implementation
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3029
# used by the RichDiagnosticFormatter.
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3030
########################################
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3031
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3032
compiler.misc.type.null=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3033
    <null>
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3034
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3035
# X#n (where n is an int id) is disambiguated tvar name
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3036
# 0: name, 1: number
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3037
compiler.misc.type.var=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3038
    {0}#{1}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3039
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3040
# CAP#n (where n is an int id) is an abbreviation for 'captured type'
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3041
# 0: number
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3042
compiler.misc.captured.type=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3043
    CAP#{0}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3044
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3045
# <INT#n> (where n is an int id) is an abbreviation for 'intersection type'
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3046
# 0: number
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3047
compiler.misc.intersection.type=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3048
    INT#{0}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3049
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3050
# where clause for captured type: contains upper ('extends {1}') and lower
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3051
# ('super {2}') bound along with the wildcard that generated this captured type ({3})
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3052
# 0: type, 1: type, 2: type, 3: type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3053
compiler.misc.where.captured=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3054
    {0} extends {1} super: {2} from capture of {3}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3055
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3056
# compact where clause for captured type: contains upper ('extends {1}') along
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3057
# with the wildcard that generated this captured type ({3})
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3058
# 0: type, 1: type, 2: unused, 3: type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3059
compiler.misc.where.captured.1=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3060
    {0} extends {1} from capture of {3}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3061
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3062
# where clause for type variable: contains upper bound(s) ('extends {1}') along with
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3063
# the kindname ({2}) and location ({3}) in which the typevar has been declared
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3064
# 0: type, 1: list of type, 2: symbol kind, 3: symbol
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3065
compiler.misc.where.typevar=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3066
    {0} extends {1} declared in {2} {3}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3067
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3068
# compact where clause for type variable: contains the kindname ({2}) and location ({3})
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3069
# in which the typevar has been declared
12468
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3070
# 0: type, 1: list of type, 2: symbol kind, 3: symbol
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3071
compiler.misc.where.typevar.1=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3072
    {0} declared in {2} {3}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3073
12468
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3074
# where clause for fresh type variable: contains upper bound(s) ('extends {1}').
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3075
# Since a fresh type-variable is synthetic - there's no location/kindname here.
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3076
# 0: type, 1: list of type
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3077
compiler.misc.where.fresh.typevar=\
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3078
    {0} extends {1}
1100643c0209 7154127: Inference cleanup: remove bound check analysis from visitors in Types.java
mcimadamore
parents: 12466
diff changeset
  3079
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3080
# where clause for type variable: contains all the upper bound(s) ('extends {1}')
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3081
# of this intersection type
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3082
# 0: type, 1: list of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3083
compiler.misc.where.intersection=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3084
    {0} extends {1}
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3085
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3086
### Where clause headers ###
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3087
compiler.misc.where.description.captured=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3088
    where {0} is a fresh type-variable:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3089
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3090
# 0: set of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3091
compiler.misc.where.description.typevar=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3092
    where {0} is a type-variable:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3093
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3094
# 0: set of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3095
compiler.misc.where.description.intersection=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3096
    where {0} is an intersection type:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3097
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3098
# 0: set of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3099
compiler.misc.where.description.captured.1=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3100
    where {0} are fresh type-variables:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3101
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3102
# 0: set of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3103
compiler.misc.where.description.typevar.1=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3104
    where {0} are type-variables:
8226
8c2fd7e7bcf3 7013272: Automatically generate info about how compiler resource keys are used
jjg
parents: 8224
diff changeset
  3105
30014
fc1f2b200c1f 8078024: javac, several incorporation steps are silently failing when an error should be reported
vromero
parents: 29960
diff changeset
  3106
# 0: set of type
2984
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3107
compiler.misc.where.description.intersection.1=\
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3108
    where {0} are intersection types:
e15ff3a34054 6722234: javac diagnostics need better integration with the type-system
mcimadamore
parents: 2723
diff changeset
  3109
14541
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3110
###
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3111
# errors related to doc comments
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3112
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3113
compiler.err.dc.bad.entity=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3114
    bad HTML entity
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3115
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3116
compiler.err.dc.bad.gt=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3117
    bad use of ''>''
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3118
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3119
compiler.err.dc.bad.inline.tag=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3120
    incorrect use of inline tag
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3121
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3122
compiler.err.dc.identifier.expected=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3123
    identifier expected
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3124
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3125
compiler.err.dc.malformed.html=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3126
    malformed HTML
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3127
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3128
compiler.err.dc.missing.semicolon=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3129
    semicolon missing
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3130
14952
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14804
diff changeset
  3131
compiler.err.dc.no.content=\
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14804
diff changeset
  3132
    no content
d0022ae20516 8004832: Add new doclint package
jjg
parents: 14804
diff changeset
  3133
14541
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3134
compiler.err.dc.no.tag.name=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3135
    no tag name after '@'
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3136
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3137
compiler.err.dc.gt.expected=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3138
    ''>'' expected
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3139
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3140
compiler.err.dc.ref.bad.parens=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3141
    '')'' missing in reference
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3142
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3143
compiler.err.dc.ref.syntax.error=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3144
    syntax error in reference
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3145
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3146
compiler.err.dc.ref.unexpected.input=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3147
    unexpected text
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3148
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3149
compiler.err.dc.unexpected.content=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3150
    unexpected content
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3151
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3152
compiler.err.dc.unterminated.inline.tag=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3153
    unterminated inline tag
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3154
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3155
compiler.err.dc.unterminated.signature=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3156
    unterminated signature
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3157
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3158
compiler.err.dc.unterminated.string=\
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3159
    unterminated string
36f9d11fc9aa 7021614: extend com.sun.source API to support parsing javadoc comments
jjg
parents: 14443
diff changeset
  3160
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3161
###
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3162
# errors related to modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3163
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3164
compiler.err.expected.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3165
    expected ''module''
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3166
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3167
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3168
compiler.err.module.not.found=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3169
    module not found: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3170
42822
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  3171
# 0: symbol
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  3172
compiler.warn.module.not.found=\
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  3173
    module not found: {0}
a84956e7ee4d 8170987: Module system implementation refresh (12/2016)
alanb
parents: 42408
diff changeset
  3174
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3175
compiler.err.too.many.modules=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3176
    too many module declarations found
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3177
43267
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3178
compiler.err.module.not.found.on.module.source.path=\
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3179
    module not found on module source path
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3180
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3181
compiler.err.not.in.module.on.module.source.path=\
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3182
    not in a module on the module source path
81e70bde1b96 8165102: incorrect message from javac
jjg
parents: 43149
diff changeset
  3183
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3184
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3185
compiler.err.duplicate.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3186
    duplicate module: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3187
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3188
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3189
compiler.err.duplicate.requires=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3190
    duplicate requires: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3191
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3192
# 0: symbol
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3193
compiler.err.conflicting.exports=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3194
    duplicate or conflicting exports: {0}
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3195
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3196
# 0: symbol
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3197
compiler.err.conflicting.opens=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3198
    duplicate or conflicting opens: {0}
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3199
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3200
# 0: symbol
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3201
compiler.err.conflicting.exports.to.module=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3202
    duplicate or conflicting exports to module: {0}
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3203
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3204
# 0: symbol
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3205
compiler.err.conflicting.opens.to.module=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3206
    duplicate or conflicting opens to module: {0}
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3207
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3208
compiler.err.no.opens.unless.strong=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3209
    ''opens'' only allowed in strong modules
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3210
43577
1a1b1242f7aa 8172807: Javac doesn't report errors on duplicate provides with different service implementations
jjg
parents: 43270
diff changeset
  3211
# 0: symbol
1a1b1242f7aa 8172807: Javac doesn't report errors on duplicate provides with different service implementations
jjg
parents: 43270
diff changeset
  3212
compiler.err.repeated.provides.for.service=\
1a1b1242f7aa 8172807: Javac doesn't report errors on duplicate provides with different service implementations
jjg
parents: 43270
diff changeset
  3213
    multiple ''provides'' for service {0}
1a1b1242f7aa 8172807: Javac doesn't report errors on duplicate provides with different service implementations
jjg
parents: 43270
diff changeset
  3214
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3215
# 0: symbol, 1: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3216
compiler.err.duplicate.provides=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3217
    duplicate provides: service {0}, implementation {1}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3218
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3219
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3220
compiler.err.duplicate.uses=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3221
    duplicate uses: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3222
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3223
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3224
compiler.err.service.implementation.is.abstract=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3225
    the service implementation is an abstract class: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3226
38827
884d32899770 8152062: obscure error message for bad 'provides'
vromero
parents: 38519
diff changeset
  3227
compiler.err.service.implementation.must.be.subtype.of.service.interface=\
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3228
    the service implementation type must be a subtype of the service interface type, or \
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3229
    have a public static no-args method named "provider" returning the service implementation
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3230
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3231
compiler.err.service.implementation.provider.return.must.be.subtype.of.service.interface=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3232
    the "provider" method return type must be a subtype of the service interface type
38827
884d32899770 8152062: obscure error message for bad 'provides'
vromero
parents: 38519
diff changeset
  3233
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3234
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3235
compiler.err.service.implementation.is.inner=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3236
    the service implementation is an inner class: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3237
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3238
# 0: symbol
37854
a76a06106d02 8153268: javac accepts enums being referenced by 'uses' statement
vromero
parents: 36713
diff changeset
  3239
compiler.err.service.definition.is.enum=\
a76a06106d02 8153268: javac accepts enums being referenced by 'uses' statement
vromero
parents: 36713
diff changeset
  3240
    the service definition is an enum: {0}
a76a06106d02 8153268: javac accepts enums being referenced by 'uses' statement
vromero
parents: 36713
diff changeset
  3241
a76a06106d02 8153268: javac accepts enums being referenced by 'uses' statement
vromero
parents: 36713
diff changeset
  3242
# 0: symbol
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3243
compiler.err.service.implementation.doesnt.have.a.no.args.constructor=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3244
    the service implementation does not have a default constructor: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3245
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3246
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3247
compiler.err.service.implementation.no.args.constructor.not.public=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3248
    the no arguments constructor of the service implementation is not public: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3249
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3250
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3251
compiler.err.package.empty.or.not.found=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3252
    package is empty or does not exist: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3253
43588
6a0e0ea0e93b 8172901: javac: 'opens' statement cannot specify non observable package
jjg
parents: 43584
diff changeset
  3254
# 0: symbol
6a0e0ea0e93b 8172901: javac: 'opens' statement cannot specify non observable package
jjg
parents: 43584
diff changeset
  3255
compiler.warn.package.empty.or.not.found=\
6a0e0ea0e93b 8172901: javac: 'opens' statement cannot specify non observable package
jjg
parents: 43584
diff changeset
  3256
    package is empty or does not exist: {0}
6a0e0ea0e93b 8172901: javac: 'opens' statement cannot specify non observable package
jjg
parents: 43584
diff changeset
  3257
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3258
compiler.err.no.output.dir=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3259
    no class output directory specified
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3260
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3261
compiler.err.unnamed.pkg.not.allowed.named.modules=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3262
    unnamed package is not allowed in named modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3263
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3264
# 0: name, 1: name
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3265
compiler.err.module.name.mismatch=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3266
    module name {0} does not match expected name {1}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3267
41254
08f8dbf7741e 8152911: javac assertion error when compiling overlay sources
jlahoda
parents: 40762
diff changeset
  3268
# 0: name, 1: name
08f8dbf7741e 8152911: javac assertion error when compiling overlay sources
jlahoda
parents: 40762
diff changeset
  3269
compiler.misc.module.name.mismatch=\
08f8dbf7741e 8152911: javac assertion error when compiling overlay sources
jlahoda
parents: 40762
diff changeset
  3270
    module name {0} does not match expected name {1}
08f8dbf7741e 8152911: javac assertion error when compiling overlay sources
jlahoda
parents: 40762
diff changeset
  3271
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3272
# 0: name
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3273
compiler.err.module.non.zero.opens=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3274
    open module {0} has non-zero opens_count
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3275
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3276
# 0: name
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3277
compiler.misc.module.non.zero.opens=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3278
    open module {0} has non-zero opens_count
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3279
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3280
compiler.err.module.decl.sb.in.module-info.java=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3281
    module declarations should be in a file named module-info.java
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3282
43772
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3283
# 0: set of string
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3284
compiler.err.too.many.patched.modules=\
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3285
    too many patched modules ({0}), use --module-source-path
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3286
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3287
# 0: name, 1: name
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3288
compiler.err.file.patched.and.msp=\
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3289
    file accessible from both --patch-module and --module-source-path, \
4e5350b7be75 8173777: Merge javac -Xmodule into javac--patch-module
jlahoda
parents: 43756
diff changeset
  3290
    but belongs to a different module on each path: {0}, {1}
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3291
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3292
compiler.err.processorpath.no.processormodulepath=\
40762
f8883aa0053c 8160851: Remove old launcher module-related options
mchung
parents: 40513
diff changeset
  3293
    illegal combination of -processorpath and --processor-module-path
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3294
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3295
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3296
compiler.err.package.in.other.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3297
    package exists in another module: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3298
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3299
# 0: symbol, 1: name, 2: symbol, 3: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3300
compiler.err.package.clash.from.requires=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3301
    module {0} reads package {1} from both {2} and {3}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3302
45682
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45156
diff changeset
  3303
# 0: name, 1: symbol, 2: symbol
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45156
diff changeset
  3304
compiler.err.package.clash.from.requires.in.unnamed=\
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45156
diff changeset
  3305
    the unnamed module reads package {0} from both {1} and {2}
fc3b228b9e2a 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45156
diff changeset
  3306
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3307
# 0: string
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3308
compiler.err.module.not.found.in.module.source.path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3309
    module {0} not found in module source path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3310
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3311
compiler.err.output.dir.must.be.specified.with.dash.m.option=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3312
    class output directory must be specified if -m option is used
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3313
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3314
compiler.err.modulesourcepath.must.be.specified.with.dash.m.option=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3315
    module source path must be specified if -m option is used
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3316
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3317
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3318
compiler.err.service.implementation.not.in.right.module=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3319
    service implementation must be defined in the same module as the provides directive
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3320
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3321
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3322
compiler.err.cyclic.requires=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3323
    cyclic dependence involving {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3324
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3325
# 0: fragment, 1: name
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3326
compiler.err.duplicate.module.on.path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3327
    duplicate module on {0}\nmodule in {1}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3328
41938
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3329
# 0: option name, 1: string
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3330
compiler.warn.bad.name.for.option=\
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3331
    bad name in value for {0} option: ''{1}''
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3332
42269
24a766b7c106 8164590: javac --inherit-runtime-environment fails with "cannot find modules: ALL-DEFAULT"
jjg
parents: 41943
diff changeset
  3333
# 0: option name, 1: string
24a766b7c106 8164590: javac --inherit-runtime-environment fails with "cannot find modules: ALL-DEFAULT"
jjg
parents: 41943
diff changeset
  3334
compiler.err.bad.name.for.option=\
24a766b7c106 8164590: javac --inherit-runtime-environment fails with "cannot find modules: ALL-DEFAULT"
jjg
parents: 41943
diff changeset
  3335
    bad name in value for {0} option: ''{1}''
24a766b7c106 8164590: javac --inherit-runtime-environment fails with "cannot find modules: ALL-DEFAULT"
jjg
parents: 41943
diff changeset
  3336
41938
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3337
# 0: option name, 1: symbol
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3338
compiler.warn.module.for.option.not.found=\
8e66bf10fcec 8167975: align javac --add-* modules options with launcher
jjg
parents: 41932
diff changeset
  3339
    module name in {0} option not found: {1}
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3340
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3341
compiler.err.addmods.all.module.path.invalid=\
55027
adb2493b120e 8220702: compiling in the context of an automatic module disallows --add-modules ALL-MODULE-PATH
jlahoda
parents: 55021
diff changeset
  3342
    --add-modules ALL-MODULE-PATH can only be used when compiling the unnamed module or \
adb2493b120e 8220702: compiling in the context of an automatic module disallows --add-modules ALL-MODULE-PATH
jlahoda
parents: 55021
diff changeset
  3343
    when compiling in the context of an automatic module
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3344
45156
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3345
# 0: symbol
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3346
compiler.err.add.exports.with.release=\
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3347
    exporting a package from system module {0} is not allowed with --release
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3348
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3349
# 0: symbol
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3350
compiler.err.add.reads.with.release=\
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3351
    adding read edges for system module {0} is not allowed with --release
001f73134346 8178152: Handling of incubating modules, the jdk.unsupported module and --add-exports with --release <current>
jlahoda
parents: 44822
diff changeset
  3352
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3353
compiler.warn.addopens.ignored=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3354
    --add-opens has no effect at compile time
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3355
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3356
compiler.misc.locn.module_source_path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3357
    module source path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3358
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3359
compiler.misc.locn.upgrade_module_path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3360
    upgrade module path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3361
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3362
compiler.misc.locn.system_modules=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3363
    system modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3364
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3365
compiler.misc.locn.module_path=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3366
    application module path
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3367
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3368
compiler.misc.cant.resolve.modules=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3369
    cannot resolve modules
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3370
48427
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
  3371
compiler.misc.bad.requires.flag=\
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
  3372
    bad requires flag: {0}
b08405cc467a 8193125: javac should not compile a module if it requires java.base with modifiers
jjg
parents: 48054
diff changeset
  3373
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3374
# 0: string
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3375
compiler.err.invalid.module.specifier=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3376
    module specifier not allowed: {0}
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3377
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3378
# 0: symbol
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3379
compiler.warn.service.provided.but.not.exported.or.used=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3380
    service interface provided but not exported or used
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3381
41444
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3382
# 0: kind name, 1: symbol, 2: symbol
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3383
compiler.warn.leaks.not.accessible=\
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3384
    {0} {1} in module {2} is not accessible to clients that require this module
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3385
# 0: kind name, 1: symbol, 2: symbol
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3386
compiler.warn.leaks.not.accessible.unexported=\
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3387
    {0} {1} in module {2} is not exported
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3388
# 0: kind name, 1: symbol, 2: symbol
42407
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3389
compiler.warn.leaks.not.accessible.not.required.transitive=\
f3702cff2933 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41943
diff changeset
  3390
    {0} {1} in module {2} is not indirectly exported using 'requires transitive'
41444
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3391
# 0: kind name, 1: symbol, 2: symbol
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3392
compiler.warn.leaks.not.accessible.unexported.qualified=\
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3393
    {0} {1} in module {2} may not be visible to all clients that require this module
b61c805c6173 8153362: Add javac -Xlint warning to list exposed types which are not accessible
jlahoda
parents: 41254
diff changeset
  3394
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3395
###
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3396
# errors related to options
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3397
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3398
# 0: string, 1: string
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3399
compiler.err.illegal.argument.for.option=\
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36272
diff changeset
  3400
    illegal argument for {0}: {1}
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3401
51563
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3402
compiler.err.switch.null.not.allowed=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3403
    null label in case is not allowed
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3404
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3405
compiler.err.switch.case.unexpected.statement=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3406
    unexpected statement in case, expected is an expression, a block or a throw statement
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3407
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3408
compiler.err.switch.mixing.case.types=\
de411d537aae 8206986: Compiler support for Switch Expressions (Preview)
jlahoda
parents: 51047
diff changeset
  3409
    different case kinds used in the switch
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3410
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3411
############################################
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3412
# messages previouly at javac.properties
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3413
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3414
compiler.err.empty.A.argument=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3415
    -A requires an argument; use ''-Akey'' or ''-Akey=value''
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3416
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3417
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3418
compiler.err.invalid.A.key=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3419
    key in annotation processor option ''{0}'' is not a dot-separated sequence of identifiers
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3420
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3421
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3422
compiler.err.invalid.flag=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3423
    invalid flag: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3424
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3425
compiler.err.profile.bootclasspath.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3426
    profile and bootclasspath options cannot be used together
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3427
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3428
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3429
compiler.err.invalid.profile=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3430
    invalid profile: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3431
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3432
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3433
compiler.err.invalid.target=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3434
    invalid target release: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3435
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3436
# 0: option name, 1: target
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3437
compiler.err.option.not.allowed.with.target=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3438
    option {0} not allowed with target {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3439
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3440
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3441
compiler.err.option.too.many=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3442
    option {0} can only be specified once
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3443
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3444
compiler.err.no.source.files=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3445
    no source files
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3446
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3447
compiler.err.no.source.files.classes=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3448
    no source files or class names
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3449
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3450
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3451
compiler.err.req.arg=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3452
    {0} requires an argument
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3453
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3454
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3455
compiler.err.invalid.source=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3456
    invalid source release: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3457
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3458
# 0: string, 1: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3459
compiler.err.error.writing.file=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3460
    error writing {0}; {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3461
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3462
compiler.err.sourcepath.modulesourcepath.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3463
    cannot specify both --source-path and --module-source-path
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3464
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3465
# 0: string, 1: target
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3466
compiler.warn.source.target.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3467
    source release {0} requires target release {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3468
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3469
# 0: string, 1: target
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3470
compiler.warn.target.default.source.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3471
    target release {0} conflicts with default source release {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3472
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3473
# 0: profile, 1: target
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3474
compiler.warn.profile.target.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3475
    profile {0} is not valid for target release {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3476
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3477
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3478
compiler.err.file.not.directory=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3479
    not a directory: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3480
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3481
# 0: object
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3482
compiler.err.file.not.file=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3483
    not a file: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3484
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3485
compiler.err.two.class.loaders.1=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3486
    javac is split between multiple class loaders: check your configuration
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3487
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3488
# 0: url, 1: url
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3489
compiler.err.two.class.loaders.2=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3490
    javac is split between multiple class loaders:\n\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3491
    one class comes from file: {0}\n\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3492
    while javac comes from {1}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3493
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3494
# 0: string, 1: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3495
compiler.err.bad.value.for.option=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3496
    bad value for {0} option: ''{1}''
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3497
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3498
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3499
compiler.err.no.value.for.option=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3500
    no value for {0} option
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3501
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3502
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3503
compiler.err.repeated.value.for.patch.module=\
51615
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3504
    --patch-module specified more than once for module {0}
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3505
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3506
# 0: string
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3507
compiler.err.repeated.value.for.module.source.path=\
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3508
    --module-source-path specified more than once for module {0}
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3509
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3510
compiler.err.multiple.values.for.module.source.path=\
afbb33428df7 8208608: Update --module-source-path to allow explicit source paths for specific modules
jjg
parents: 51563
diff changeset
  3511
    --module-source-path specified more than once with a pattern argument
49822
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3512
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3513
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3514
compiler.err.unmatched.quote=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3515
    unmatched quote in environment variable {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3516
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3517
# 0: option name
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3518
compiler.err.release.bootclasspath.conflict=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3519
    option {0} cannot be used together with --release
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3520
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3521
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3522
compiler.err.unsupported.release.version=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3523
    release version {0} not supported
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3524
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3525
# 0: string
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3526
compiler.err.file.not.found=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3527
    file not found: {0}
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3528
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3529
# 0: string, 1: source
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3530
compiler.err.preview.not.latest=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3531
    invalid source release {0} with --enable-preview\n\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3532
    (preview language features are only supported for release {1})
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3533
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3534
compiler.err.preview.without.source.or.release=\
53aae0c219e6 8196433: use the new error diagnostic approach at javac.Main
vromero
parents: 49580
diff changeset
  3535
    --enable-preview must be used with either -source or --release