JPanel getBugDetailsPanel() {
if (_bugDetailsPanel == null) {
final JScrollPane scrollPane = ScrollPaneFacade.createScrollPane(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED);
scrollPane.setViewportView(getBugDetailsPane());
//scrollPane.setBorder(BorderFactory.createCompoundBorder(new EmptyBorder(0, 0, 0, 3), new CustomLineBorder(new Color(98, 95, 89), 0, 0, 1, 1)));
scrollPane.setBorder(new CustomLineBorder(new JBColor(new Color(98, 95, 89), new Color(53, 51, 48)), 0, 0, 1, 0));
//scrollPane.setBorder(new EmptyBorder(0, 0, 0, 0));
_bugDetailsPanel = new JPanel();
_bugDetailsPanel.setBorder(new EmptyBorder(3, 2, 0, 3));
_bugDetailsPanel.setLayout(new BorderLayout());