Index: /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmChangesetContentParser.java
===================================================================
--- /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmChangesetContentParser.java	(revision 34270)
+++ /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmChangesetContentParser.java	(revision 34271)
@@ -287,4 +287,5 @@
      * @param source the input stream with the changeset content as XML document. Must not be null.
      * @throws IllegalArgumentException thrown if source is null.
+     * @throws UnsupportedEncodingException if the named charset is not supported
      */
     public OsmChangesetContentParser(InputStream source) throws UnsupportedEncodingException {
@@ -303,5 +304,5 @@
      * Parses the content
      *
-     * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE}
+     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE}
      * if null
      * @return the parsed data
Index: /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java
===================================================================
--- /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java	(revision 34270)
+++ /applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java	(revision 34271)
@@ -16,4 +16,5 @@
 import org.openstreetmap.josm.data.osm.Changeset;
 import org.openstreetmap.josm.data.osm.DataSet;
+import org.openstreetmap.josm.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
 import org.openstreetmap.josm.gui.progress.ProgressMonitor;
@@ -27,5 +28,5 @@
 
 /**
- * Reads the history of an {@see OsmPrimitive} from the OSM API server.
+ * Reads the history of an {@link OsmPrimitive} from the OSM API server.
  *
  */
@@ -52,5 +53,5 @@
      * Queries a list
      * @param query  the query specification. Must not be null.
-     * @param monitor a progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param monitor a progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the list of changesets read from the server
      * @throws IllegalArgumentException thrown if query is null
@@ -83,9 +84,9 @@
      * Reads the changeset with id <code>id</code> from the server
      *
-     * @param id  the changeset id. id > 0 required.
-     * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param id  the changeset id. id &gt; 0 required.
+     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the changeset read
      * @throws OsmTransferException thrown if something goes wrong
-     * @throws IllegalArgumentException if id <= 0
+     * @throws IllegalArgumentException if id &lt;= 0
      */
     public Changeset readChangeset(long id, ProgressMonitor monitor) throws OsmTransferException {
@@ -119,9 +120,9 @@
      * Reads the changeset with id <code>id</code> from the server
      *
-     * @param ids  the list of ids. Ignored if null. Only load changesets for ids > 0.
-     * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
+     * @param ids  the list of ids. Ignored if null. Only load changesets for ids &gt; 0.
+     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
      * @return the changeset read
      * @throws OsmTransferException thrown if something goes wrong
-     * @throws IllegalArgumentException if id <= 0
+     * @throws IllegalArgumentException if id &lt;= 0
      */
     public List<Changeset> readChangesets(Collection<Integer> ids, ProgressMonitor monitor) throws OsmTransferException {
@@ -168,8 +169,8 @@
      * Downloads the content of a changeset
      *
-     * @param id the changeset id. >0 required.
-     * @param monitor the progress monitor. {@see NullProgressMonitor#INSTANCE} assumed if null.
+     * @param id the changeset id. &gt;0 required.
+     * @param monitor the progress monitor. {@link NullProgressMonitor#INSTANCE} assumed if null.
      * @return the changeset content
-     * @throws IllegalArgumentException thrown if id <= 0
+     * @throws IllegalArgumentException thrown if id &lt;= 0
      * @throws OsmTransferException thrown if something went wrong
      */
