-
Notifications
You must be signed in to change notification settings - Fork 160
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
Changed use of "==" operator to Class.isAssignableFrom method #514
Changed use of "==" operator to Class.isAssignableFrom method #514
Conversation
@Hopding Hi, what I usually do at this point is follow the coveralls link and review the classes there that can use some "coverage", and create new tests until coveralls is happy. Something we all go through I'm afraid because coveralls isn't perfect? |
@cogmission Ah, I'm afraid I hadn't realized the Coveralls check failed. Thanks for bringing that to my attention. I'll take a look and fix it as soon as I get a chance. |
Haven't forgotten about this. Been busy, but should have some time for this soon 👍 |
No worries. I have lot's going on personally too, so I can relate... |
@cogmission There, should be all better now 👍 My apologies for the delay. |
@Hopding No need to apologize, I knew you'd get around to it. Nice Tests! |
Fixes #513. This PR changes use of
==
operator toClass.isAssignableFrom
method inLayer.java
.