We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec578a commit b47c8d8Copy full SHA for b47c8d8
app/src/main/java/saarland/cispa/artist/codelib/CodeLib.java
@@ -25,6 +25,8 @@
25
26
public class CodeLib {
27
28
+ @interface Inject {}
29
+
30
// Instance variable for singleton usage ///////////////////////////////////////////////////////
31
public static CodeLib INSTANCE = new CodeLib();
32
@@ -76,6 +78,7 @@ private String getCallingMethodName() {
76
78
/**
77
79
* Tracelog method, prints the method name of the calling method.
80
*/
81
+ @Inject
82
public void traceLog() {
83
final String callingMethodName = getCallingMethodName();
84
Log.d(TAG, "Caller -> " + callingMethodName);
0 commit comments