mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8249687: Use inline @jls and @jvm tages in more places in java.base
Reviewed-by: bpb, mchung, mikael
This commit is contained in:
parent
d1d17200c5
commit
b7c307c019
17 changed files with 40 additions and 40 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -34,7 +34,7 @@ package java.lang;
|
|||
* new AssertionError(<i>expression</i>)
|
||||
* </pre>
|
||||
* has as its detail message the <i>string conversion</i> of
|
||||
* <i>expression</i> (as defined in section 15.18.1.1 of
|
||||
* <i>expression</i> (as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>),
|
||||
* regardless of the type of <i>expression</i>.
|
||||
*
|
||||
|
@ -62,7 +62,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified object, which is converted to a string as
|
||||
* defined in section 15.18.1.1 of
|
||||
* defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*<p>
|
||||
* If the specified object is an instance of {@code Throwable}, it
|
||||
|
@ -80,7 +80,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code boolean}, which is converted to
|
||||
* a string as defined in section 15.18.1.1 of
|
||||
* a string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
@ -92,7 +92,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code char}, which is converted to a
|
||||
* string as defined in section 15.18.1.1 of
|
||||
* string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
@ -104,7 +104,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code int}, which is converted to a
|
||||
* string as defined in section 15.18.1.1 of
|
||||
* string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
@ -116,7 +116,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code long}, which is converted to a
|
||||
* string as defined in section 15.18.1.1 of
|
||||
* string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
@ -128,7 +128,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code float}, which is converted to a
|
||||
* string as defined in section 15.18.1.1 of
|
||||
* string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
@ -140,7 +140,7 @@ public class AssertionError extends Error {
|
|||
/**
|
||||
* Constructs an AssertionError with its detail message derived
|
||||
* from the specified {@code double}, which is converted to a
|
||||
* string as defined in section 15.18.1.1 of
|
||||
* string as defined in section {@jls 5.1.11} of
|
||||
* <cite>The Java Language Specification</cite>.
|
||||
*
|
||||
* @param detailMessage value to be used in constructing detail message
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue