You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The annotation is currently manually placed on methods that have different signatures or bodies between the git branches.
We could programmatically enumerate all methods similar to https://github.com/TeamDman/SuperFactoryManager/blob/1.19.2/src/test/java/ca/teamdman/ai/FileImportWalker.java to identify the methods where the signature or body has changed, and use an LLM to generate a comment string to go in the annotation describing the changes.
If an import changes, that should not count as a difference.
For example:
a method accepting net.minecraftforge.IItemHandler in 1.19.2 and a net.neoforge.IItemHandler in 1.21.1 should be equivalent.
If the difference in the method is simple like the variable names being different but the rest of the code is the same, the thing should suggest we adjust to make them the same.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
The annotation is currently manually placed on methods that have different signatures or bodies between the git branches.
We could programmatically enumerate all methods similar to https://github.com/TeamDman/SuperFactoryManager/blob/1.19.2/src/test/java/ca/teamdman/ai/FileImportWalker.java to identify the methods where the signature or body has changed, and use an LLM to generate a comment string to go in the annotation describing the changes.
If an import changes, that should not count as a difference.
For example:
a method accepting
net.minecraftforge.IItemHandlerin 1.19.2 and anet.neoforge.IItemHandlerin 1.21.1 should be equivalent.If the difference in the method is simple like the variable names being different but the rest of the code is the same, the thing should suggest we adjust to make them the same.
Beta Was this translation helpful? Give feedback.
All reactions