Menu

#918 (f) no warning when overriding a deprecated method

open-fixed
None
5
2004-09-26
2004-09-22
No

javac 1.5.0 warns if you override a deprecated method. jikes 1.21 doesn't.

; cat > C.java
class C extends java.awt.Component {
public void enable() {
super.enable();
}
}

; javac -deprecation C.java
# two diagnostics, one for the override, one for the invocation.

; jikes -deprecation C.java
# one diagnostic, for the invocation.

Discussion

  • Elliott Hughes

    Elliott Hughes - 2004-09-25
    • assigned_to: nobody --> enh
     
  • Elliott Hughes

    Elliott Hughes - 2004-09-26

    fixed in CVS.

     
  • Elliott Hughes

    Elliott Hughes - 2004-09-26
    • summary: no warning when overriding a deprecated method --> (f) no warning when overriding a deprecated method
    • status: open --> open-fixed
     

Log in to post a comment.

MongoDB Logo MongoDB