We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Because of how the java model handles packages, renaming a non leaf package means it will simply create a new package with the new name.
For example renaming the incquerylabs package in com.incquerylabs.evm.jdt will result in two packages: com.incquerylabs.evm.jdt and com.renamed
incquerylabs
com.incquerylabs.evm.jdt
com.renamed
The text was updated successfully, but these errors were encountered:
ecd6359
fix #26 added ModelSetSnippet to avoid removing existing Java files
9951e27
In the following hierarchy
after renaming outerpackage to renamed, the result in the Java project is:
outerpackage
renamed
Sorry, something went wrong.
No branches or pull requests
Because of how the java model handles packages, renaming a non leaf package means it will simply create a new package with the new name.
For example renaming the
incquerylabs
package incom.incquerylabs.evm.jdt
will result in two packages:com.incquerylabs.evm.jdt
andcom.renamed
The text was updated successfully, but these errors were encountered: