jimu-decompiled/sources/org/aspectj/runtime/reflect/SourceLocationImpl.java
2025-05-13 19:24:51 +02:00

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();
}
}