31 lines
644 B
Java
31 lines
644 B
Java
package org.aspectj.runtime.reflect;
|
|
|
|
import org.aspectj.lang.reflect.SourceLocation;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class SourceLocationImpl implements SourceLocation {
|
|
String a;
|
|
int b;
|
|
|
|
SourceLocationImpl(Class cls, String str, int i) {
|
|
this.a = str;
|
|
this.b = i;
|
|
}
|
|
|
|
public String a() {
|
|
return this.a;
|
|
}
|
|
|
|
public int b() {
|
|
return this.b;
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuffer stringBuffer = new StringBuffer();
|
|
stringBuffer.append(a());
|
|
stringBuffer.append(":");
|
|
stringBuffer.append(b());
|
|
return stringBuffer.toString();
|
|
}
|
|
}
|