tmf: remove deprecated methods from tmf
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / event / lookup / ITmfCallsite.java
index 146b87772a4627ea005fb89f74b1eb6e3ff2e959..0571395ac22861fb51c96d8045c8ff72261c7133 100644 (file)
@@ -36,32 +36,11 @@ public interface ITmfCallsite {
      */
     @NonNull String getFileName();
 
-    /**
-     * Returns the function name of the call site.
-     *
-     * @return the function name or null
-     * @deprecated Should not be part of this interface anymore.
-     */
-    @Deprecated
-    @Nullable String getFunctionName();
-
-    /**
-     * Returns the line number of the call site.
-     *
-     * @return the line number
-     * @deprecated Use {@link #getLineNo()} instead, which can return null.
-     */
-    @Deprecated
-    long getLineNumber();
-
     /**
      * Returns the line number of the call site.
      *
      * @return The line number, or 'null' if unavailable
      * @since 2.1
      */
-    default @Nullable Long getLineNo() {
-        /* TODO Change to abstract method once getLineNumber() is removed */
-        return getLineNumber();
-    }
+    @Nullable Long getLineNo();
 }
This page took 0.023597 seconds and 5 git commands to generate.