-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
since 1.3.22 setColor(java.awt.Color.SOMECOLOR) does not work anymore in jpms program #439
Comments
fontCell.setColor(0,0,0); |
Color BLACK = Color.BLACK; |
Thanks. Pull Requests welcome! |
Sorry, got no real java skills. And my git skills are 0. with this new openpdf-1.3.23-SNAPSHOT.jar in the module java.desktop is java.awt.Color.* |
I'll merge your PR soon. |
in 1.3.20
fontCell.setColor(Color.BLACK) works
in 1.3.21 and 1.3.22 I get
error: cannot access Color
fontCell.setColor(BLACK);
^
class file for java.awt.Color not found
in module-info.java is
requires java.desktop;
without module-info.java it compiles....
The text was updated successfully, but these errors were encountered: