More useless @see removals.

Change-Id: Ib6b255a332b1c19e50cba7b7ec5fec8862402b31
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CurrentBrowser.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CurrentBrowser.java
index a2f3cc8..879abd6 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CurrentBrowser.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CurrentBrowser.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -37,23 +37,17 @@
 		this.browserAdapterId = browserAdapterId;
 		this.external = externalBrowser;
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#close()
-	 */
+
 	@Override
 	public void close() {
 		browserAdapter.close();
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isCloseSupported()
-	 */
+
 	@Override
 	public boolean isCloseSupported() {
 		return browserAdapter.isCloseSupported();
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#displayURL(java.lang.String)
-	 */
+
 	@Override
 	public void displayURL(String url) throws Exception {
 		checkDefaultAdapter();
@@ -72,9 +66,7 @@
 		}
 		browserAdapter.displayURL(url);
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetLocationSupported()
-	 */
+
 	@Override
 	public boolean isSetLocationSupported() {
 		checkDefaultAdapter();
@@ -84,9 +76,7 @@
 		return browserAdapter.isSetLocationSupported()
 				|| newBrowserAdapter.isSetLocationSupported();
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetSizeSupported()
-	 */
+
 	@Override
 	public boolean isSetSizeSupported() {
 		checkDefaultAdapter();
@@ -96,9 +86,7 @@
 		return browserAdapter.isSetSizeSupported()
 				|| newBrowserAdapter.isSetSizeSupported();
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setLocation(int, int)
-	 */
+
 	@Override
 	public void setLocation(int x, int y) {
 		checkDefaultAdapter();
@@ -107,9 +95,7 @@
 		this.x = x;
 		this.y = y;
 	}
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setSize(int, int)
-	 */
+
 	@Override
 	public void setSize(int width, int height) {
 		checkDefaultAdapter();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowser.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowser.java
index 3889fec..c6b5124 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowser.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowser.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -22,30 +22,18 @@
 import org.eclipse.osgi.service.environment.*;
 import org.eclipse.osgi.util.NLS;
 
-/**
- *
- */
 public class CustomBrowser implements IBrowser {
 	public static final String CUSTOM_BROWSER_PATH_KEY = "custom_browser_path"; //$NON-NLS-1$
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#close()
-	 */
 	@Override
 	public void close() {
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isCloseSupported()
-	 */
 	@Override
 	public boolean isCloseSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#displayURL(java.lang.String)
-	 */
 	@Override
 	public void displayURL(String url) throws Exception {
 		String path =  Platform.getPreferencesService().getString
@@ -73,32 +61,20 @@
 		}
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetLocationSupported()
-	 */
 	@Override
 	public boolean isSetLocationSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetSizeSupported()
-	 */
 	@Override
 	public boolean isSetSizeSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setLocation(int, int)
-	 */
 	@Override
 	public void setLocation(int x, int y) {
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setSize(int, int)
-	 */
 	@Override
 	public void setSize(int width, int height) {
 	}
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowserFactory.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowserFactory.java
index ba87f7f..6a9a620 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowserFactory.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/CustomBrowserFactory.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -20,17 +20,11 @@
  */
 public class CustomBrowserFactory implements IBrowserFactory {
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowserFactory#isAvailable()
-	 */
 	@Override
 	public boolean isAvailable() {
 		return true;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowserFactory#createBrowser()
-	 */
 	@Override
 	public IBrowser createBrowser() {
 		return new CustomBrowser();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
index 05c31c4..61aa757 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaBrowserAdapter.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -63,16 +63,10 @@
 		this.executableName = executableName;
 	}
 
-	/*
-	 * @see IBrowser#close()
-	 */
 	@Override
 	public void close() {
 	}
 
-	/*
-	 * @see IBrowser#displayURL(String)
-	 */
 	@Override
 	public void displayURL(String url) {
 		if (lastBrowserThread != null)
@@ -86,33 +80,21 @@
 		setSizePending = false;
 	}
 
-	/*
-	 * @see IBrowser#isCloseSupported()
-	 */
 	@Override
 	public boolean isCloseSupported() {
 		return false;
 	}
 
-	/*
-	 * @see IBrowser#isSetLocationSupported()
-	 */
 	@Override
 	public boolean isSetLocationSupported() {
 		return true;
 	}
 
-	/*
-	 * @see IBrowser#isSetSizeSupported()
-	 */
 	@Override
 	public boolean isSetSizeSupported() {
 		return true;
 	}
 
-	/*
-	 * @see IBrowser#setLocation(int, int)
-	 */
 	@Override
 	public void setLocation(int x, int y) {
 		this.x = x;
@@ -120,9 +102,6 @@
 		setLocationPending = true;
 	}
 
-	/*
-	 * @see IBrowser#setSize(int, int)
-	 */
 	@Override
 	public void setSize(int width, int height) {
 		this.width = width;
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
index 9ba3b1d..a821545 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/MozillaFactory.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -36,9 +36,7 @@
 	public MozillaFactory() {
 		super();
 	}
-	/*
-	 * @see IBrowserFactory#isAvailable()
-	 */
+
 	@Override
 	public boolean isAvailable() {
 		if (!isSupportedOS(System.getProperty("os.name"))) { //$NON-NLS-1$
@@ -92,9 +90,7 @@
 		}
 		return false;
 	}
-	/*
-	 * @see IBrowserFactory#createBrowser()
-	 */
+
 	@Override
 	public IBrowser createBrowser() {
 		// Create single browser for all clients
@@ -104,10 +100,7 @@
 		}
 		return browserInstance;
 	}
-	/**
-	 * @see org.eclipse.core.runtime.IExecutableExtension#setInitializationData(org.eclipse.core.runtime.IConfigurationElement,
-	 *      java.lang.String, java.lang.Object)
-	 */
+
 	@Override
 	public void setInitializationData(IConfigurationElement config,
 			String propertyName, Object data) throws CoreException {
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserAdapter.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserAdapter.java
index 9afe4cc..b3bc66b 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserAdapter.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserAdapter.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -28,16 +28,10 @@
 		return fgInstance;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#close()
-	 */
 	@Override
 	public void close() {
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#displayURL(String)
-	 */
 	@Override
 	public void displayURL(String url) {
 		/*
@@ -52,40 +46,25 @@
 		}
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isCloseSupported()
-	 */
 	@Override
 	public boolean isCloseSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetLocationSupported()
-	 */
 	@Override
 	public boolean isSetLocationSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#isSetSizeSupported()
-	 */
 	@Override
 	public boolean isSetSizeSupported() {
 		return false;
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setLocation(int, int)
-	 */
 	@Override
 	public void setLocation(int x, int y) {
 	}
 
-	/**
-	 * @see org.eclipse.help.browser.IBrowser#setSize(int, int)
-	 */
 	@Override
 	public void setSize(int width, int height) {
 	}
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserFactory.java b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserFactory.java
index 9aa29af..004a890 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserFactory.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/browser/macosx/DefaultBrowserFactory.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -21,9 +21,6 @@
 		super();
 	}
 
-	/*
-	 * @see IBrowserFactory#isAvailable()
-	 */
 	@Override
 	public boolean isAvailable() {
 		return System.getProperty("os.name").equals("Mac OS X"); //$NON-NLS-1$ //$NON-NLS-2$
@@ -33,9 +30,6 @@
 		 */
 	}
 
-	/*
-	 * @see IBrowserFactory#createBrowser()
-	 */
 	@Override
 	public IBrowser createBrowser() {
 		return DefaultBrowserAdapter.getInstance();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLConnection.java b/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLConnection.java
index c24f396..38660dc 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLConnection.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLConnection.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -109,9 +109,6 @@
 		setDefaultUseCaches(isCacheable());
 	}
 
-	/**
-	 * @see URLConnection#connect()
-	 */
 	@Override
 	public void connect() throws IOException {
 	}
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLStreamHandler.java b/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLStreamHandler.java
index 4e7db14..a93017e 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLStreamHandler.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/protocols/HelpURLStreamHandler.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -22,9 +22,7 @@
 	public HelpURLStreamHandler() {
 		super();
 	}
-	/**
-	 * @see java.net.URLStreamHandler#openConnection(java.net.URL)
-	 */
+
 	@Override
 	protected URLConnection openConnection(URL url) throws IOException {
 		String protocol = url.getProtocol();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/ASCIIReader.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/ASCIIReader.java
index 1081a95..63e97b6 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/ASCIIReader.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/ASCIIReader.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -34,9 +34,6 @@
 		buf = new byte[bufSize];
 	}
 
-	/**
-	 * @see java.io.Reader#read(char[], int, int)
-	 */
 	@Override
 	public int read(char[] cbuf, int off, int len) throws IOException {
 		int n = stream.read(buf, 0, Math.min(bufSize, len));
@@ -46,9 +43,6 @@
 		return n;
 	}
 
-	/**
-	 * @see java.io.Reader#close()
-	 */
 	@Override
 	public void close() throws IOException {
 		stream.close();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/LazyProgressMonitor.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/LazyProgressMonitor.java
index 4bab286..1575094 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/LazyProgressMonitor.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/LazyProgressMonitor.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -31,9 +31,6 @@
 		super(monitor);
 		this.monitor = monitor;
 	}
-	/**
-	 * @see IProgressMonitor#beginTask
-	 */
 	@Override
 	public void beginTask(String name, int totalWork) {
 		if (totalWork > 0) {
@@ -44,9 +41,7 @@
 		lastWorked = 0;
 		treshold = 1 + totalWork / MAX_STEPS;
 	}
-	/**
-	 * @see IProgressMonitor#worked
-	 */
+
 	@Override
 	public void worked(int newWork) {
 		this.work += newWork;
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/ProgressDistributor.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/ProgressDistributor.java
index df98f4b..5f5518a 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/ProgressDistributor.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/ProgressDistributor.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -33,9 +33,6 @@
 	 */
 	private Collection<IProgressMonitor> monitors = new ArrayList<>();
 
-	/**
-	 * @see IProgressMonitor#beginTask(String, int)
-	 */
 	@Override
 	public synchronized void beginTask(String name, int totalWork) {
 		this.totalWork = totalWork;
@@ -47,9 +44,6 @@
 		}
 	}
 
-	/**
-	 * @see IProgressMonitor#done()
-	 */
 	@Override
 	public synchronized void done() {
 		done = true;
@@ -59,9 +53,6 @@
 		}
 	}
 
-	/**
-	 * @see IProgressMonitor#internalWorked(double)
-	 */
 	@Override
 	public void internalWorked(double work) {
 		worked += work;
@@ -71,9 +62,6 @@
 		}
 	}
 
-	/**
-	 * @see IProgressMonitor#isCanceled()
-	 */
 	@Override
 	public synchronized boolean isCanceled() {
 		for (Iterator<IProgressMonitor> it = monitors.iterator(); it.hasNext();) {
@@ -85,16 +73,10 @@
 		return false;
 	}
 
-	/**
-	 * @see IProgressMonitor#setCanceled(boolean)
-	 */
 	@Override
 	public void setCanceled(boolean value) {
 	}
 
-	/**
-	 * @see IProgressMonitor#setTaskName(String)
-	 */
 	@Override
 	public synchronized void setTaskName(String name) {
 		taskName = name;
@@ -104,9 +86,6 @@
 		}
 	}
 
-	/**
-	 * @see IProgressMonitor#subTask(String)
-	 */
 	@Override
 	public synchronized void subTask(String name) {
 		subTaskName = name;
@@ -116,9 +95,6 @@
 		}
 	}
 
-	/**
-	 * @see IProgressMonitor#worked(int)
-	 */
 	@Override
 	public synchronized void worked(int work) {
 		internalWorked(work);
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/standalone/EclipseController.java b/org.eclipse.help.base/src/org/eclipse/help/internal/standalone/EclipseController.java
index 516deb2..9c6cbed 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/standalone/EclipseController.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/standalone/EclipseController.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableHelpResource.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableHelpResource.java
index 60390c0..0a6733d 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableHelpResource.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableHelpResource.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -35,9 +35,6 @@
 		this.element = element;
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
@@ -95,17 +92,11 @@
 	 */
 	public abstract ITopic getTopic(String href);
 
-	/**
-	 * @see org.eclipse.help.IHelpResource#getHref()
-	 */
 	@Override
 	public String getHref() {
 		return element.getHref();
 	}
 
-	/**
-	 * @see org.eclipse.help.IHelpResource#getLabel()
-	 */
 	@Override
 	public String getLabel() {
 		return element.getLabel();
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedToc.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedToc.java
index f25a42b..4c4d55d 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedToc.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedToc.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2015 IBM Corporation and others.
+ * Copyright (c) 2009, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -30,9 +30,6 @@
 		super(element);
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedTopic.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedTopic.java
index cc89953..0ef61ea 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedTopic.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableSelectedTopic.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2015 IBM Corporation and others.
+ * Copyright (c) 2009, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -29,9 +29,6 @@
 		super(element);
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableToc.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableToc.java
index bf2a0a5..ed7422f 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableToc.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableToc.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -31,9 +31,6 @@
 		super(element);
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
@@ -55,9 +52,6 @@
 		return children;
 	}
 
-	/**
-	 * @see org.eclipse.help.IToc#getTopic(java.lang.String)
-	 */
 	@Override
 	public ITopic getTopic(String href) {
 		if(null != href && href.equals(((IToc) element).getTopic(null).getHref())){
@@ -66,9 +60,6 @@
 		return ((IToc) element).getTopic(href);
 	}
 
-	/**
-	 * @see org.eclipse.help.IToc#getTopics()
-	 */
 	public ITopic[] getTopics() {
 		return ((IToc) element).getTopics();
 	}
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTocsArray.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTocsArray.java
index 6a7b0ec..b8fe920 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTocsArray.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTocsArray.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -36,9 +36,6 @@
 		this.element = tocs;
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTopic.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTopic.java
index c1ef793..0da64c7 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTopic.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/AdaptableTopic.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -37,9 +37,6 @@
 		super(element);
 	}
 
-	/**
-	 * @see org.eclipse.core.runtime.IAdaptable#getAdapter(java.lang.Class)
-	 */
 	@Override
 	@SuppressWarnings("unchecked")
 	public <T> T getAdapter(Class<T> adapter) {
@@ -58,9 +55,6 @@
 		return adaptableTopic;
 	}
 
-	/**
-	 * @see org.eclipse.help.ITopic#getSubtopics()
-	 */
 	public ITopic[] getSubtopics() {
 		return ((ITopic) element).getSubtopics();
 	}
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetComparator.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetComparator.java
index 6cafb15..be11cec 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetComparator.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetComparator.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -22,11 +22,6 @@
 public class WorkingSetComparator implements Comparator<WorkingSet> {
 	private Collator fCollator = Collator.getInstance();
 
-	/**
-	 * Implements Comparator.
-	 *
-	 * @see Comparator#compare(Object, Object)
-	 */
 	@Override
 	public int compare(WorkingSet o1,WorkingSet o2) {
 		String name1 = null;
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetManager.java b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetManager.java
index 4fe4970..c7ecf08 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetManager.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/workingset/WorkingSetManager.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -170,11 +170,6 @@
 		return workingSets.hashCode();
 	}
 
-	/**
-	 * Implements IWorkingSetManager.
-	 *
-	 * @see org.eclipse.ui.IWorkingSetManager#getWorkingSets()
-	 */
 	@Override
 	public WorkingSet[] getWorkingSets() {
 		return workingSets.toArray(new WorkingSet[workingSets
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpPreferencePage.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpPreferencePage.java
index 30bfe78..54a8c7e 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpPreferencePage.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpPreferencePage.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -27,7 +27,6 @@
 import org.eclipse.help.ui.internal.Messages;
 import org.eclipse.jface.dialogs.Dialog;
 import org.eclipse.jface.preference.IPreferenceNode;
-import org.eclipse.jface.preference.IPreferencePage;
 import org.eclipse.jface.preference.PreferenceManager;
 import org.eclipse.jface.preference.PreferencePage;
 import org.eclipse.swt.SWT;
@@ -217,9 +216,6 @@
 		return null;
 	}
 
-	/**
-	 * @see IWorkbenchPreferencePage
-	 */
 	@Override
 	public void init(IWorkbench workbench) {
 	}
@@ -260,9 +256,6 @@
 		super.performDefaults();
 	}
 
-	/**
-	 * @see IPreferencePage
-	 */
 	@Override
 	public boolean performOk() {
 		IEclipsePreferences pref = InstanceScope.INSTANCE.getNode(HelpBasePlugin.PLUGIN_ID);
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaContentProvider.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaContentProvider.java
index 61a8e1f..dda2fb3 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaContentProvider.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaContentProvider.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2010, 2016 IBM Corporation and others.
+ * Copyright (c) 2010, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -107,9 +107,6 @@
 		super();
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#getChildren(java.lang.Object)
-	 */
 	@Override
 	public Object[] getChildren(Object parentElement) {
 		if (parentElement instanceof String[]) {
@@ -133,9 +130,6 @@
 		}
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#getParent(java.lang.Object)
-	 */
 	@Override
 	public Object getParent(Object element) {
 		if (element instanceof CriterionName) {
@@ -146,33 +140,20 @@
 		return null;
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#hasChildren(java.lang.Object)
-	 */
 	@Override
 	public boolean hasChildren(Object element) {
 		return getChildren(element).length > 0;
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IStructuredContentProvider#getElements(java.lang.Object)
-	 */
 	@Override
 	public Object[] getElements(Object inputElement) {
 		return getChildren(inputElement);
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IContentProvider#dispose()
-	 */
 	@Override
 	public void dispose() {
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer,
-	 *      java.lang.Object, java.lang.Object)
-	 */
 	@Override
 	public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
 	}
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaLabelProvider.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaLabelProvider.java
index 0cc7ab0..5c744e7 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaLabelProvider.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpCriteriaLabelProvider.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2010, 2016 IBM Corporation and others.
+ * Copyright (c) 2010, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -27,17 +27,11 @@
 		super();
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ILabelProvider#getImage(java.lang.Object)
-	 */
 	@Override
 	public Image getImage(Object element) {
 		return null;
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ILabelProvider#getText(java.lang.Object)
-	 */
 	@Override
 	public String getText(Object element) {
 		if (element instanceof HelpCriteriaContentProvider.CriterionName) {
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetElementLabelProvider.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetElementLabelProvider.java
index f0b5862..4497a49 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetElementLabelProvider.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetElementLabelProvider.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -27,17 +27,11 @@
 		super();
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ILabelProvider#getImage(java.lang.Object)
-	 */
 	@Override
 	public Image getImage(Object element) {
 		return null;
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ILabelProvider#getText(java.lang.Object)
-	 */
 	@Override
 	public String getText(Object element) {
 		if (element instanceof AdaptableToc)
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetTreeContentProvider.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetTreeContentProvider.java
index 44812a4..9c1c28d 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetTreeContentProvider.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/search/HelpWorkingSetTreeContentProvider.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -29,9 +29,6 @@
 		super();
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#getChildren(java.lang.Object)
-	 */
 	@Override
 	public Object[] getChildren(Object parentElement) {
 		if (parentElement instanceof AdaptableTocsArray)
@@ -42,9 +39,6 @@
 			return new IAdaptable[0];
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#getParent(java.lang.Object)
-	 */
 	@Override
 	public Object getParent(Object element) {
 		if (element instanceof AdaptableHelpResource)
@@ -52,33 +46,20 @@
 		return null;
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.ITreeContentProvider#hasChildren(java.lang.Object)
-	 */
 	@Override
 	public boolean hasChildren(Object element) {
 		return (element instanceof AdaptableToc || element instanceof AdaptableTocsArray);
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IStructuredContentProvider#getElements(java.lang.Object)
-	 */
 	@Override
 	public Object[] getElements(Object inputElement) {
 		return getChildren(inputElement);
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IContentProvider#dispose()
-	 */
 	@Override
 	public void dispose() {
 	}
 
-	/**
-	 * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer,
-	 *      java.lang.Object, java.lang.Object)
-	 */
 	@Override
 	public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
 	}
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/Chevron.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/Chevron.java
index f314f33..be7e784 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/Chevron.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/views/Chevron.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -41,9 +41,6 @@
 		marginHeight = 4;
 	}
 
-	/*
-	 * @see SelectableControl#paint(GC)
-	 */
 	@Override
 	protected void paintHyperlink(GC gc) {
 		if (hover && getHoverDecorationColor() != null)
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/FramesetFilter.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/FramesetFilter.java
index 1ff424e..6667233 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/FramesetFilter.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/FramesetFilter.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -34,9 +34,6 @@
 			+ "\n  window.location.replace( \""; //$NON-NLS-1$
 	private static final String scriptPart3 = "\" + anchorParam);\n}\n</script>"; //$NON-NLS-1$
 
-	/*
-	 * @see IFilter#filter(HttpServletRequest, OutputStream)
-	 */
 	@Override
 	public OutputStream filter(HttpServletRequest req, OutputStream out) {
 		String uri = req.getRequestURI();
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InfocenterWorkingSetManager.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InfocenterWorkingSetManager.java
index a1d99f7..857148a 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InfocenterWorkingSetManager.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InfocenterWorkingSetManager.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -126,11 +126,6 @@
 		return null;
 	}
 
-	/**
-	 * Implements IWorkingSetManager.
-	 *
-	 * @see org.eclipse.help.internal.workingset.IHelpWorkingSetManager#getWorkingSets()
-	 */
 	@Override
 	public WorkingSet[] getWorkingSets() {
 		return workingSets.toArray(new WorkingSet[workingSets
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InjectionFilter.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InjectionFilter.java
index 489f639..2b48707 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InjectionFilter.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/InjectionFilter.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -48,9 +48,6 @@
 		this.isRemote = isRemote;
 	}
 
-	/*
-	 * @see IFilter#filter(HttpServletRequest, OutputStream)
-	 */
 	@Override
 	public OutputStream filter(HttpServletRequest req, OutputStream out) {
 		boolean isUnfiltered = ProductPreferences.useEnablementFilters();
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/WebappWorkingSetManager.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/WebappWorkingSetManager.java
index fa0b1a0..d57a6d2 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/WebappWorkingSetManager.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/WebappWorkingSetManager.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2015 IBM Corporation and others.
+ * Copyright (c) 2000, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -87,11 +87,7 @@
 	public WorkingSet getWorkingSet(String name) {
 		return wSetManager.getWorkingSet(name);
 	}
-	/**
-	 * Implements IWorkingSetManager.
-	 *
-	 * @see org.eclipse.ui.IWorkingSetManager#getWorkingSets()
-	 */
+
 	@Override
 	public WorkingSet[] getWorkingSets() {
 		return wSetManager.getWorkingSets();
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/CheatSheetCategoryBasedSelectionAction.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/CheatSheetCategoryBasedSelectionAction.java
index d8812fb..9c91128 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/CheatSheetCategoryBasedSelectionAction.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/CheatSheetCategoryBasedSelectionAction.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2002, 2015 IBM Corporation and others.
+ * Copyright (c) 2002, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -54,9 +54,6 @@
 		super(text, image);
 	}
 
-	/**
-	 * @see Action#run()
-	 */
 	@Override
 	public void run() {
 		CheatSheetCollectionElement cheatSheets = CheatSheetRegistryReader.getInstance().getCheatSheets();
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/OpenPerspective.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/OpenPerspective.java
index a82b3bb..0570052 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/OpenPerspective.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/actions/OpenPerspective.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2002, 2015 IBM Corporation and others.
+ * Copyright (c) 2002, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -13,11 +13,19 @@
  *******************************************************************************/
 package org.eclipse.ui.internal.cheatsheets.actions;
 
-import org.eclipse.core.runtime.*;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
 import org.eclipse.jface.action.Action;
-import org.eclipse.ui.*;
-import org.eclipse.ui.cheatsheets.*;
-import org.eclipse.ui.internal.cheatsheets.*;
+import org.eclipse.ui.IPerspectiveDescriptor;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.cheatsheets.ICheatSheetAction;
+import org.eclipse.ui.cheatsheets.ICheatSheetManager;
+import org.eclipse.ui.internal.cheatsheets.CheatSheetPlugin;
+import org.eclipse.ui.internal.cheatsheets.ICheatSheetResource;
+import org.eclipse.ui.internal.cheatsheets.Messages;
 
 /**
  * Action to programmatically open a perspective from a cheat sheet.
@@ -37,9 +45,6 @@
 	}
 
 
-	/**
-	 * @see Action#run()
-	 */
 	@Override
 	public void run(String[] params, ICheatSheetManager manager) {
 		try {
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetExpandRestoreAction.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetExpandRestoreAction.java
index c305243..412bc3c 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetExpandRestoreAction.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetExpandRestoreAction.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2002, 2015 IBM Corporation and others.
+ * Copyright (c) 2002, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -17,7 +17,8 @@
 import org.eclipse.core.runtime.IPath;
 import org.eclipse.jface.action.Action;
 import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.ui.internal.cheatsheets.*;
+import org.eclipse.ui.internal.cheatsheets.CheatSheetPlugin;
+import org.eclipse.ui.internal.cheatsheets.Messages;
 
 /**
  * Action used to enable / disable method filter properties
@@ -42,9 +43,6 @@
 		setCollapsed(initValue);
 	}
 
-	/*
-	 * @see Action#actionPerformed
-	 */
 	@Override
 	public void run() {
 		viewer.toggleExpandRestore();
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetView.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetView.java
index aa62c29..a4c1ade 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetView.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CheatSheetView.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2003, 2015 IBM Corporation and others.
+ * Copyright (c) 2003, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -110,9 +110,6 @@
 		CheatSheetStopWatch.printTotalTime("CheatSheetView.createPartControl", "Time in CheatSheetView.createPartControl(): "); //$NON-NLS-1$ //$NON-NLS-2$
 	}
 
-	/**
-	 * @see org.eclipse.ui.IWorkbenchPart#dispose()
-	 */
 	@Override
 	public void dispose() {
 		super.dispose();
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CoreItem.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CoreItem.java
index bf9f073..c473587 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CoreItem.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/CoreItem.java
@@ -314,9 +314,6 @@
 		return null;
 	}
 
-	/**
-	 * @see org.eclipse.ui.internal.cheatsheets.ViewItem#handleButtons()
-	 */
 	@Override
 	/*package*/ void handleButtons() {
 		if(item.isDynamic()) {
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/IntroItem.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/IntroItem.java
index 710e138..1882f4d 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/IntroItem.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/views/IntroItem.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2002, 2015 IBM Corporation and others.
+ * Copyright (c) 2002, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -14,12 +14,17 @@
 package org.eclipse.ui.internal.cheatsheets.views;
 
 import org.eclipse.swt.SWT;
-import org.eclipse.swt.graphics.*;
-import org.eclipse.swt.layout.*;
-import org.eclipse.swt.widgets.*;
-import org.eclipse.ui.forms.events.*;
-import org.eclipse.ui.forms.widgets.*;
-import org.eclipse.ui.internal.cheatsheets.*;
+import org.eclipse.swt.graphics.Color;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Label;
+import org.eclipse.ui.forms.events.HyperlinkAdapter;
+import org.eclipse.ui.forms.events.HyperlinkEvent;
+import org.eclipse.ui.forms.widgets.ImageHyperlink;
+import org.eclipse.ui.forms.widgets.TableWrapData;
+import org.eclipse.ui.internal.cheatsheets.CheatSheetPlugin;
+import org.eclipse.ui.internal.cheatsheets.ICheatSheetResource;
+import org.eclipse.ui.internal.cheatsheets.Messages;
 import org.eclipse.ui.internal.cheatsheets.data.Item;
 
 public class IntroItem extends ViewItem {
@@ -51,9 +56,6 @@
 //		startButton.setFAccessibleName(startButton.getToolTipText());
 	}
 
-	/**
-	 * @see org.eclipse.ui.internal.cheatsheets.data.ViewItem#handleButtons(Composite)
-	 */
 	@Override
 	/*package*/ void handleButtons() {
 		buttonComposite = page.getToolkit().createComposite(bodyWrapperComposite);
diff --git a/org.eclipse.ui.intro/META-INF/MANIFEST.MF b/org.eclipse.ui.intro/META-INF/MANIFEST.MF
index c079ba2..3146c42 100644
--- a/org.eclipse.ui.intro/META-INF/MANIFEST.MF
+++ b/org.eclipse.ui.intro/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %plugin_name
 Bundle-SymbolicName: org.eclipse.ui.intro; singleton:=true
-Bundle-Version: 3.5.400.qualifier
+Bundle-Version: 3.5.500.qualifier
 Bundle-Activator: org.eclipse.ui.internal.intro.impl.IntroPlugin
 Bundle-Vendor: %provider_name
 Bundle-Localization: plugin
diff --git a/org.eclipse.ui.intro/pom.xml b/org.eclipse.ui.intro/pom.xml
index 50bbf2f..1d181b5 100644
--- a/org.eclipse.ui.intro/pom.xml
+++ b/org.eclipse.ui.intro/pom.xml
@@ -18,7 +18,7 @@
   </parent>
   <groupId>org.eclipse.ui</groupId>
   <artifactId>org.eclipse.ui.intro</artifactId>
-  <version>3.5.400-SNAPSHOT</version>
+  <version>3.5.500-SNAPSHOT</version>
   <packaging>eclipse-plugin</packaging>
 
   <properties>
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
index 8d1f850..5e15fa1 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/BrowserIntroPartImplementation.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2004, 2017 IBM Corporation and others.
+ * Copyright (c) 2004, 2019 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -624,10 +624,6 @@
         generateContentForPage(getModel().getCurrentPage());
     }
 
-    /**
-     *
-     * @see org.eclipse.ui.internal.intro.impl.model.AbstractIntroPartImplementation#reflow()
-     */
     @Override
 	public void reflow(IIntroContentProvider provider, boolean incremental) {
         updateContent();
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
index 87d5529..f8b1993 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/presentations/IntroLaunchBar.java
@@ -1,5 +1,5 @@
 /***************************************************************************************************
- * Copyright (c) 2005, 2016 IBM Corporation and others.
+ * Copyright (c) 2005, 2019 IBM Corporation and others.
  *
  * This program and the
  * accompanying materials are made available under the terms of the Eclipse Public License 2.0