Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2019-03-22 22:39:22 +0000
committerManoj Palat2019-03-25 08:04:16 +0000
commit3ae0f22df2dfdbd07a2f7c334d93801236b377de (patch)
treef1da0290207461ce21fc03e646ad1a4b80bb1af8 /org.eclipse.jdt.annotation/src/org
parentdabfef4dcf15b3a6edb09d10c4759084f4ef07cf (diff)
downloadeclipse.jdt.core-3ae0f22df2dfdbd07a2f7c334d93801236b377de.tar.gz
eclipse.jdt.core-3ae0f22df2dfdbd07a2f7c334d93801236b377de.tar.xz
eclipse.jdt.core-3ae0f22df2dfdbd07a2f7c334d93801236b377de.zip
Bug 545691 - Javadoc errors in jdt.core bundles
- fix javadoc errors/warnings in jdt.core classes Change-Id: I4708bb425398235675948df94280263982184a98 Signed-off-by: Jeff Johnston <jjohnstn@redhat.com>
Diffstat (limited to 'org.eclipse.jdt.annotation/src/org')
-rw-r--r--org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/Checks.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/Checks.java b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/Checks.java
index 8d9b22d385..2911cc3e6f 100644
--- a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/Checks.java
+++ b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/Checks.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2016 Stephan Herrmann and others.
+ * Copyright (c) 2016, 2019 Stephan Herrmann and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -83,8 +83,8 @@ import java.util.function.Supplier;
* <dt>computations</dt>
* <dd>Methods {@link #ifNonNull(Object, Consumer)}, {@link #applyIfNonNull(Object, Function)},
* {@link #applyIfNonNullElse(Object, Function, Object)} and {@link #applyIfNonNullElseGet(Object, Function, Supplier)}
- * feed unsafe values into a given functional expression in a null-safe way.
- * <dl>
+ * feed unsafe values into a given functional expression in a null-safe way.</dd>
+ * </dl>
*
* @since 2.1
*/

Back to the top