You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2017/03/01 22:57:35 UTC

lucene-solr:master: LUCENE-7726: Fix HTML entity bugs in Javadocs to be able to build with Java 9

Repository: lucene-solr
Updated Branches:
  refs/heads/master 4851f399d -> 8684fe794


LUCENE-7726: Fix HTML entity bugs in Javadocs to be able to build with Java 9


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/8684fe79
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/8684fe79
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/8684fe79

Branch: refs/heads/master
Commit: 8684fe794437e483039a027dcd21a14d56773a12
Parents: 4851f39
Author: Uwe Schindler <us...@apache.org>
Authored: Wed Mar 1 23:57:18 2017 +0100
Committer: Uwe Schindler <us...@apache.org>
Committed: Wed Mar 1 23:57:18 2017 +0100

----------------------------------------------------------------------
 lucene/CHANGES.txt                                                | 3 +++
 .../src/java/org/apache/lucene/index/memory/MemoryIndex.java      | 2 +-
 .../queries/src/java/org/apache/lucene/queries/BoostingQuery.java | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8684fe79/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 7d8e363..a7bc726 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -242,6 +242,9 @@ Build
 * LUCENE-7693: Replace "org.apache." logic in GetMavenDependenciesTask.
   (Daniel Collins, Christine Poerschke)
 
+* LUCENE-7726: Fix HTML entity bugs in Javadocs to be able to build with
+  Java 9. (Uwe Schindler, Hossman)
+
 Other
 
 * LUCENE-7666: Fix typos in lucene-join package info javadoc.

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8684fe79/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java
----------------------------------------------------------------------
diff --git a/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java b/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java
index dc4a666..32b2d24 100644
--- a/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java
+++ b/lucene/memory/src/java/org/apache/lucene/index/memory/MemoryIndex.java
@@ -103,7 +103,7 @@ import org.apache.lucene.util.StringHelper;
  * <a target="_blank" 
  * href="http://bobwyman.pubsub.com/main/2005/05/mary_hodder_poi.html">Prospective Search</a>, 
  * Jim Gray's
- * <a target="_blank" href="http://www.acmqueue.org/modules.php?name=Content&pa=showpage&pid=293&page=4">
+ * <a target="_blank" href="http://www.acmqueue.org/modules.php?name=Content&amp;pa=showpage&amp;pid=293&amp;page=4">
  * A Call to Arms - Custom subscriptions</a>, and Tim Bray's
  * <a target="_blank" 
  * href="http://www.tbray.org/ongoing/When/200x/2003/07/30/OnSearchTOC">On Search, the Series</a>.

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8684fe79/lucene/queries/src/java/org/apache/lucene/queries/BoostingQuery.java
----------------------------------------------------------------------
diff --git a/lucene/queries/src/java/org/apache/lucene/queries/BoostingQuery.java b/lucene/queries/src/java/org/apache/lucene/queries/BoostingQuery.java
index 3bbbf1b..41479f2 100644
--- a/lucene/queries/src/java/org/apache/lucene/queries/BoostingQuery.java
+++ b/lucene/queries/src/java/org/apache/lucene/queries/BoostingQuery.java
@@ -38,7 +38,7 @@ import org.apache.lucene.search.*;
  * demoting effect
  * 
  * This code was originally made available here: 
- *   <a href="http://marc.theaimsgroup.com/?l=lucene-user&m=108058407130459&w=2">http://marc.theaimsgroup.com/?l=lucene-user&amp;m=108058407130459&amp;w=2</a>
+ *   <a href="http://marc.theaimsgroup.com/?l=lucene-user&amp;m=108058407130459&amp;w=2">http://marc.theaimsgroup.com/?l=lucene-user&amp;m=108058407130459&amp;w=2</a>
  * and is documented here: http://wiki.apache.org/lucene-java/CommunityContributions
  */
 public class BoostingQuery extends Query {