This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
AJP/DiSLProject2022/src-profiler/ex2/IsNotTriviallyThreadGuard.java

13 lines
319 B
Java
Raw Normal View History

2023-01-02 14:18:34 +00:00
package ex2;
import ch.usi.dag.disl.annotation.GuardMethod;
import ch.usi.dag.disl.staticcontext.ClassStaticContext;
public class IsNotTriviallyThreadGuard {
@GuardMethod
public static boolean isNotTriviallyThread(final ClassStaticContext csc) {
return !IsTriviallyThreadGuard.isThread(csc);
}
}