Files
codeql/java/ql/src/Language Abuse/OverridePackagePrivate.java
2018-08-30 10:48:05 +01:00

29 lines
369 B
Java

// File 1
package gui;
abstract class Widget
{
// ...
// Return the width (in pixels) of this widget
int width() {
// ...
}
// ...
}
// File 2
package gui.extras;
class PhotoResizerWidget extends Widget
{
// ...
// Return the new width (of the photo when resized)
public int width() {
// ...
}
// ...
}