do not break qualifier removal into 2 transactions: one to remove qualifier and another one to remove leading dot (IllegalArgumentException is thrown by ChangeSignatureDetector)

This commit is contained in:
anna
2010-10-07 12:20:02 +04:00
parent fb48f50a1b
commit aa951c8272
3 changed files with 5 additions and 4 deletions
@@ -2,6 +2,6 @@ import util.Pair;
class Client {
void method() {
Pair<String, Pair<Integer,Boolean>> p = PairProvider.getPair();
Pair<String,Pair<Integer,Boolean>> p = PairProvider.getPair();
}
}