Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Not recognizing files in the same package #138

Open
grepgrok opened this issue Mar 23, 2022 · 0 comments
Open

Not recognizing files in the same package #138

grepgrok opened this issue Mar 23, 2022 · 0 comments

Comments

@grepgrok
Copy link

I have the following code (shortened):

cars/Automobile.java

package cars;

public abstract class Automobile {
    // contents
}

and cars/SmallCar.java

package cars;

public class SmallCar extends Automobile {
    // contents
}

This compiles perfectly fine via terminal with /path/to/cars/ $ javac *.java but linter-javac is showing an error on extending Automobile in SmallCar.java

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant