1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

[276325] [disassembly] [breakpoints] Exception when setting breakpoint in disassembly view

This commit is contained in:
Anton Leherbauer 2009-05-15 08:04:23 +00:00
parent 6d067b774b
commit 47e2c99bdb

View file

@ -576,11 +576,9 @@ public class DisassemblyDocument extends REDDocument {
return new Position(offset, lineLength); return new Position(offset, lineLength);
} }
} catch (BadLocationException exc) { } catch (BadLocationException exc) {
// TLETODO Auto-generated catch block internalError(exc);
exc.printStackTrace();
} catch (BadPositionCategoryException exc) { } catch (BadPositionCategoryException exc) {
// TLETODO Auto-generated catch block internalError(exc);
exc.printStackTrace();
} }
return null; return null;
} }