Skip to content
Snippets Groups Projects
Commit 2122ae96 authored by Goik Martin's avatar Goik Martin
Browse files

Link correction (local URL part)

parent f9d06587
No related branches found
No related tags found
No related merge requests found
......@@ -1356,7 +1356,7 @@ System.out.println(c.equals(c)); // true: Object equal to itself.</programlist
<figure xml:id="sd1_inherit_fig_rectangleEquals">
<title>Implementing <classname>Rectangle</classname>.<methodname
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals-java.lang.Object)">equals()</methodname></title>
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals(java.lang.Object)">equals()</methodname></title>
<programlisting language="java">public class Rectangle extends Shape {
@Override public boolean equals(Object o) {
......@@ -1379,7 +1379,7 @@ System.out.println(c.equals(c)); // true: Object equal to itself.</programlist
<figure xml:id="sd1_inherit_fig_circleEquals">
<title>Implementing <classname>Circle</classname>.<methodname
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals-java.lang.Object)">equals()</methodname></title>
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals(java.lang.Object)">equals()</methodname></title>
<programlisting language="java">public class Circle extends Shape {
@Override public boolean equals(final Object o) {
......
......@@ -54,7 +54,7 @@ while (!values.empty()) {
<itemizedlist>
<listitem>
<para><methodname
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals-java.lang.Object)">public
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html#equals(java.lang.Object)">public
boolean equals</methodname>(<classname
xlink:href="https://docs.oracle.com/javase/10/docs/api/java/lang/Object.html">Object</classname>
obj)</para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment