Do you know any way to easily change every double
to float
in a source file in eclipse (java)? I.e. how do I change
double a = 123.45
to
float a = 123.45f
I figured out the renaming double
to float
bit (whoa!), but how to add the f
's without having to go through it manually?