ss: Replace AttributeNotFoundException with IOOBE for quark parameters
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.core / src / org / eclipse / tracecompass / analysis / os / linux / core / kernel / KernelThreadInformationProvider.java
index 0beb0e5c85f825771bed3983f00a4e3b141c7399..de0125ba18f46b30158989359cd4fcd593e0f41d 100644 (file)
@@ -189,7 +189,7 @@ public final class KernelThreadInformationProvider {
         }
         try {
             return ss.querySingleState(ts, prioQuark).getStateValue().unboxInt();
-        } catch (AttributeNotFoundException | StateSystemDisposedException e) {
+        } catch (StateSystemDisposedException e) {
             return -1;
         }
     }
This page took 0.025727 seconds and 5 git commands to generate.