aboutsummaryrefslogtreecommitdiff
path: root/src/jdiff/API.java
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-09-21 22:30:36 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-09-21 22:30:36 +0000
commitf57f26f2081fe80a5ebe5dfd57f1067488d44d6a (patch)
tree17b12998295c1f74feacdd55f36bc3856032dfaa /src/jdiff/API.java
parent658d28e2d062aa5154d9e10433a7b2cd33e04711 (diff)
parent34c7705205f1f551fd6c3a4baee065f467a2011d (diff)
downloadjdiff-f57f26f2081fe80a5ebe5dfd57f1067488d44d6a.tar.gz
release-request-d1c17d84-f03d-44ed-9e1a-f1dedcc3182d-for-git_oc-mr1-wear-release-4353319 snap-temp-L19800000105061864android-wear-8.1.0_r1oreo-mr1-wear-release
Change-Id: Ie0321dccb0ba2402f4fb1627b6386eaaafc97328
Diffstat (limited to 'src/jdiff/API.java')
-rwxr-xr-xsrc/jdiff/API.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/jdiff/API.java b/src/jdiff/API.java
index 800e752..b5cb8e2 100755
--- a/src/jdiff/API.java
+++ b/src/jdiff/API.java
@@ -4,23 +4,23 @@ import java.io.*;
import java.util.*;
/**
- * The internal representation of an API.
- *
- * RootDoc could have been used for representing this, but
+ * The internal representation of an API.
+ *
+ * RootDoc could have been used for representing this, but
* you cannot serialize a RootDoc object - see
- * http://developer.java.sun.com/developer/bugParade/bugs/4125581.html
- * You might be able use Javadoc.Main() to create another RootDoc, but the
+ * https://developer.java.sun.com/developer/bugParade/bugs/4125581.html
+ * You might be able use Javadoc.Main() to create another RootDoc, but the
* methods are package private. You can run javadoc in J2SE1.4, see:
- * http://java.sun.com/j2se/1.4/docs/tooldocs/javadoc/standard-doclet.html#runningprogrammatically
+ * https://java.sun.com/j2se/1.4/docs/tooldocs/javadoc/standard-doclet.html#runningprogrammatically
* but you still can't get the RootDoc object.
*
* The advantage of writing out an XML representation of each API is that
* later runs of JDiff don't have to have Javadoc scan all the files again,
- * a possibly lengthy process. XML also permits other source code in
+ * a possibly lengthy process. XML also permits other source code in
* languages other than Java to be scanned to produce XML, and then versions
* of JDiff can be used to create documents describing the difference in those
* APIs.
- *
+ *
* See the file LICENSE.txt for copyright details.
* @author Matthew Doar, mdoar@pobox.com
*/