Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2016-12-06 16:26:07 +0000
committerAlexander Kurtakov2016-12-06 17:05:22 +0000
commit5304bf28c48145f1cb1d257599d94d7e92549639 (patch)
treef829c4775244d0dec0b2aedf118cc5077ea52084 /systemtap
parentaad2d1437faf7256ef8bf277af9fd527d10792cd (diff)
downloadorg.eclipse.linuxtools-5304bf28c48145f1cb1d257599d94d7e92549639.tar.gz
org.eclipse.linuxtools-5304bf28c48145f1cb1d257599d94d7e92549639.tar.xz
org.eclipse.linuxtools-5304bf28c48145f1cb1d257599d94d7e92549639.zip
Cleanups.
* Missing Override. * Useless throws. Change-Id: I2adddd77d99d1fa2b167f946d9d0e8b88c805fc1 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/86501 Tested-by: Hudson CI
Diffstat (limited to 'systemtap')
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/charts/BarChart.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/charts/BarChart.java b/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/charts/BarChart.java
index 09b2a6857f..91ed5fb733 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/charts/BarChart.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.graphing.ui/src/org/eclipse/linuxtools/internal/systemtap/graphing/ui/charts/BarChart.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2013 Red Hat Inc.
+ * Copyright (c) 2013, 2016 Red Hat Inc.
* 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
@@ -29,7 +29,8 @@ public class BarChart extends Chart {
private IAxis xAxis = null;
private boolean updateSuspended = false;
- public void suspendUpdate(boolean suspend) {
+ @Override
+ public void suspendUpdate(boolean suspend) {
if (updateSuspended == suspend) {
return;
}

Back to the top