Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java14
1 files changed, 1 insertions, 13 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java
index db14f06e4..b886bde26 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/Chart.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Frank Becker and others.
+ * Copyright (c) 2011, 2013 Frank Becker and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -66,18 +66,6 @@ public class Chart implements Serializable {
}
row.add(columnIndex, expression);
}
-
- }
-
- public void addRow(int index) {
- int size = expressions.size();
- if (index > size) {
- index = size;
- }
- if (index < 0) {
- index = 0;
- }
- addRow(index);
}
public int getRowSize() {

Back to the top