mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
cleanup
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user