Skip to content
Snippets Groups Projects
Commit 1144aaeb authored by Simon Barner's avatar Simon Barner
Browse files

- Avoid empty catch

parent f7f12850
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ import org.fortiss.tooling.kernel.service.IPersistencyService;
* @author barner
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: B422B9F233540F5DF727153EE4A4AB40
* @ConQAT.Rating GREEN Hash: 8DBC1CF96C363577F23800CBF25DC376
*
*/
public class MultiSelectionEditingSupport extends AnnotationEditingSupportBase {
......@@ -148,7 +148,7 @@ public class MultiSelectionEditingSupport extends AnnotationEditingSupportBase {
try {
entry.setSpecificationValue(value, specClass, instanceKey);
} catch(Exception e) {
// Ignore
return;
}
}
});
......
......@@ -79,7 +79,7 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt
* @author eder, diewald, barner
* @author $Author$
* @version $Rev$
* @ConQAT.Rating GREEN Hash: 1F0F6314425E17831AF0D340B6D8B1F8
* @ConQAT.Rating GREEN Hash: E2E53108D4A685762999DA9FFD10C0D7
*/
public class GenericAnnotationView extends AnnotationViewPartBase {
/** Root composite of {@link GenericAnnotationView}. */
......@@ -296,7 +296,7 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
method.setAccessible(accessible);
}
} catch(Exception e) {
// ignore
return;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment