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
SPIM_Registration/src/main/java/spim/fiji/plugin/Apply_Transformation.java
Line 735 in 5472f9b
while ( entry.contains( "(" ) ) entry.replace( "(", "" ); while ( entry.contains( ")" ) ) entry.replace( ")", "" ); while ( entry.contains( "[" ) ) entry.replace( "[", "" ); while ( entry.contains( "]" ) ) entry.replace( "]", "" );
String entry is not getting updated from the call to replace().
All these calls to replace() should be modified to: entry = entry.replace(
Presently I’m assuming these 4 calls to entry.contains() never returns true because I think an infinite loop would occur.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SPIM_Registration/src/main/java/spim/fiji/plugin/Apply_Transformation.java
Line 735 in 5472f9b
String entry is not getting updated from the call to replace().
All these calls to replace() should be modified to:
entry = entry.replace(
Presently I’m assuming these 4 calls to entry.contains() never returns true because I think an infinite loop would occur.
The text was updated successfully, but these errors were encountered: