fix javadoc errors that prevent compilation in Eclipse

This commit is contained in:
John Aylward
2021-07-22 22:54:46 -04:00
parent 449ec8745e
commit 4e0faebe62
5 changed files with 14 additions and 17 deletions

View File

@@ -120,7 +120,7 @@ public class JSONPointerTest {
/**
* We pass backslashes as-is
*
* @see https://tools.ietf.org/html/rfc6901#section-3
* @see <a href="https://tools.ietf.org/html/rfc6901#section-3">rfc6901 section 3</a>
*/
@Test
public void backslashHandling() {
@@ -130,7 +130,7 @@ public class JSONPointerTest {
/**
* We pass quotations as-is
*
* @see https://tools.ietf.org/html/rfc6901#section-3
* @see <a href="https://tools.ietf.org/html/rfc6901#section-3">rfc6901 section 3</a>
*/
@Test
public void quotationHandling() {

View File

@@ -8,7 +8,7 @@ import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
/**
* Object for testing the exception handling in {@link JSONObject#populateMap}.
* Object for testing the exception handling in {@link org.json.JSONObject#populateMap}.
*
* @author John Aylward
*/