I have a package called Product that has 2 class files, ProductInfo and BinaryFile. Both files are located in the same directory ../Product/ and both files start with "package Product;" I can compile BinaryFile.java just fine. Inside of ProductInfo i want to use the class BinaryFile, however i get a compile error saying:
ProductInfo.java:18: cannot find symbol
symbol : class BinaryFile
...
I did not think an import was needed since the files are in the same directory and in the same package, does any one have any ideas on how to fix the compile error?
Thanks,
-Adam