This commit is contained in:
Bas Leijdekkers
2011-01-26 11:07:06 +01:00
parent 07fd8a601d
commit 5cb2184bd1
3 changed files with 5 additions and 6 deletions
@@ -324,11 +324,10 @@ public class SearchUtil {
head = textToMarkup.substring(0, bodyStart);
if (bodyEnd >= 0) {
foot = textToMarkup.substring(bodyEnd);
textToMarkup = textToMarkup.substring(0, bodyEnd);
} else {
foot = "";
}
textToMarkup = textToMarkup.substring(bodyStart);
textToMarkup = textToMarkup.substring(bodyStart, bodyEnd);
} else {
foot = "";
head = "";
@@ -1,5 +1,5 @@
/*
* Copyright 2010 Bas Leijdekkers
* Copyright 2010-2011 Bas Leijdekkers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
*/
package com.siyeh.ig.telemetry;
public class InspectionRunTime {
class InspectionRunTime {
private final String inspectionName;
@@ -1,5 +1,5 @@
/*
* Copyright 2003-2010 Dave Griffith, Bas Leijdekkers
* Copyright 2003-2011 Dave Griffith, Bas Leijdekkers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import java.text.NumberFormat;
import java.util.Comparator;
import java.util.List;
public class TelemetryDisplay {
class TelemetryDisplay {
private final JScrollPane scrollPane;
private final ListTableModel<InspectionRunTime> tableModel;