-
Notifications
You must be signed in to change notification settings - Fork 53
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 methods #41
Comments
Hi, You can do this by the command:
Thank you. |
Hi,
Thanks for the reply, but this is not giving me the changed methods between two jars. Kindly let me know if i am missing something here.
Thanks,
Vikas
… On 17-Apr-2017, at 11:07 AM, ABI Laboratory ***@***.***> wrote:
Hi,
You can do this by the command:
japi-compliance-checker -l NAME -old OLD.jar -new NEW.jar
Thank you.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Can you attach jars to this issue? |
Hi,
Sorry can not attach the jars, but you just need to create one class with data members and then just change something in any method. My requirement is to get the changed methods between the two versions of jars. Currently i am getting the newly added methods but not the changed methods.
Thanks,
Vikas
… On 17-Apr-2017, at 3:37 PM, ABI Laboratory ***@***.***> wrote:
Reopened #41.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
If you'll change signature of a method then it is equal to adding a new method and removal of an old one. If you'll change internals of a method's parameter data type (e.g. add a new field) then this method will not be reported as removed. Please compare with the reports for other libraries: https://abi-laboratory.pro/java/tracker/ Also please run the tool with the Thank you. |
How can I get the changed methods between two versions of jars.
The text was updated successfully, but these errors were encountered: