}
public boolean equals(Object other) {
- if (other == null || !(other instanceof InterimCompilationResult)) {
+ if (!(other instanceof InterimCompilationResult)) {
return false;
}
InterimCompilationResult ir = (InterimCompilationResult) other;
boolean isRef(Expression expr, Binding binding) {
//System.err.println("isRef: " + expr + ", " + binding);
- return expr != null
- && expr instanceof NameReference
- && isRef((NameReference) expr, binding);
+ return expr instanceof NameReference
+ && isRef((NameReference)expr, binding);
}
public void endVisit(SingleNameReference ref, BlockScope scope) {
}
boolean isRef(Expression expr, Binding binding) {
- return expr != null && expr instanceof NameReference && isRef((NameReference) expr, binding);
+ return expr instanceof NameReference && isRef((NameReference)expr, binding);
}
public void endVisit(SingleNameReference ref, BlockScope scope) {
// don't output unused type warnings for aspects!
if (typeDecl instanceof AspectDeclaration)
return;
- if (typeDecl.enclosingType != null && (typeDecl.enclosingType instanceof AspectDeclaration)) {
+ if (typeDecl.enclosingType instanceof AspectDeclaration) {
AspectDeclaration ad = (AspectDeclaration) typeDecl.enclosingType;
if (ad.concreteName != null) {
List<Declare> declares = ad.concreteName.declares;
Argument arg = (Argument) localDecl;
if (arg.binding != null && arg.binding.declaringScope != null) {
ReferenceContext context = arg.binding.declaringScope.referenceContext();
- if (context != null && context instanceof PointcutDeclaration)
+ if (context instanceof PointcutDeclaration)
return;
}
}
@Override
public boolean equals(Object obj) {
- if (obj != null && (obj instanceof BinarySourceFile)) {
+ if (obj instanceof BinarySourceFile) {
BinarySourceFile other = (BinarySourceFile) obj;
return (binSrc.equals(other.binSrc));
}
String signatureToLookFor = typeToExpose.getSignature();
for (ConcreteTypeMunger cTM : typeMungers) {
ResolvedTypeMunger rTM = cTM.getMunger();
- if (rTM != null && rTM instanceof ExposeTypeMunger) {
+ if (rTM instanceof ExposeTypeMunger) {
String exposedType = ((ExposeTypeMunger) rTM).getExposedTypeSignature();
if (exposedType.equals(signatureToLookFor)) {
return; // dont need to bother
private TypePattern lazyTestTypePattern;
public boolean equals(Object other) {
- if (other == null || !(other instanceof PerObjectInterfaceTypeMunger)) {
+ if (!(other instanceof PerObjectInterfaceTypeMunger)) {
return false;
}
PerObjectInterfaceTypeMunger o = (PerObjectInterfaceTypeMunger) other;
StringBuilder hashable = new StringBuilder(256);
// Add the list of loader urls to the hash list
- if (cl != null && cl instanceof URLClassLoader) {
+ if (cl instanceof URLClassLoader) {
URL[] urls = ((URLClassLoader) cl).getURLs();
for (URL url : urls) {
hashableStrings.add(url.toString());