diff options
author | prestonpeterson <ptown77@gmail.com> | 2016-08-27 01:03:37 -0700 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-08-27 10:03:37 +0200 |
commit | 12c9b8daba15cf4950ae73f9813219d45bf373e8 (patch) | |
tree | e4dccbfa8932d097f6b3cf829f06bb427efb2dd3 /java.html.markdown | |
parent | 5a463a37256db3f1e42dd029d7d20e4cb03690dd (diff) |
Update java.html.markdown (#2346)
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index 56bffd88..57c10390 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -566,7 +566,7 @@ class PennyFarthing extends Bicycle { // out: http://docs.oracle.com/javase/tutorial/java/annotations/ @Override public void setGear(int gear) { - gear = 0; + this.gear = 0; } } |