blob: 8ae058592d0aa6695dae532166e41dd9d792d4fe [file] [log] [blame]
package com.siyeh.ipp.equality.replace_equality_with_safe_equals;
public class PrimitiveComparison {
boolean a(int i, int j) {
return i <caret>== j;
}
}