Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKetan Padegaonkar2010-06-24 05:11:35 +0000
committerKetan Padegaonkar2010-06-24 05:11:35 +0000
commita94fc961b02ce57ba5178d57193039d1b3c232e9 (patch)
tree9c2475cc36e52c995aabd30854f09b1b0a2a2508
parentfdf10120665c5c91c8ec53cf64610ab9783fdd20 (diff)
downloadorg.eclipse.swtbot-a94fc961b02ce57ba5178d57193039d1b3c232e9.tar.gz
org.eclipse.swtbot-a94fc961b02ce57ba5178d57193039d1b3c232e9.tar.xz
org.eclipse.swtbot-a94fc961b02ce57ba5178d57193039d1b3c232e9.zip
Fixed warnings about unused imports.
-rw-r--r--org.eclipse.swtbot.generator/src/org/eclipse/swtbot/generator/MethodGenerator.java3
-rw-r--r--org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/SWTBotWidget.java1
-rw-r--r--org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/matchers/WithLabel.java2
-rw-r--r--org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/waits/Conditions.java1
-rw-r--r--org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/AbstractSWTBot.java1
5 files changed, 1 insertions, 7 deletions
diff --git a/org.eclipse.swtbot.generator/src/org/eclipse/swtbot/generator/MethodGenerator.java b/org.eclipse.swtbot.generator/src/org/eclipse/swtbot/generator/MethodGenerator.java
index a6668549..04ab6e7a 100644
--- a/org.eclipse.swtbot.generator/src/org/eclipse/swtbot/generator/MethodGenerator.java
+++ b/org.eclipse.swtbot.generator/src/org/eclipse/swtbot/generator/MethodGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 Ketan Padegaonkar and others.
+ * Copyright (c) 2008, 2010 Ketan Padegaonkar 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
@@ -13,7 +13,6 @@ package org.eclipse.swtbot.generator;
import java.util.ArrayList;
import java.util.List;
-import org.eclipse.swt.widgets.Widget;
import org.eclipse.swtbot.swt.finder.ReferenceBy;
import org.eclipse.swtbot.swt.finder.utils.ClassUtils;
diff --git a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/SWTBotWidget.java b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/SWTBotWidget.java
index b138b880..83e80b5c 100644
--- a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/SWTBotWidget.java
+++ b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/SWTBotWidget.java
@@ -26,7 +26,6 @@ import java.lang.annotation.Target;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Widget;
-import org.eclipse.swtbot.swt.finder.widgets.AbstractSWTBot;
/**
* Marks a SWTBot widget so tools recognise them. This anotation is primarily used to describe the convinience API that
diff --git a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/matchers/WithLabel.java b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/matchers/WithLabel.java
index 5927bb72..efd658ca 100644
--- a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/matchers/WithLabel.java
+++ b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/matchers/WithLabel.java
@@ -11,8 +11,6 @@
*******************************************************************************/
package org.eclipse.swtbot.swt.finder.matchers;
-import static org.hamcrest.Matchers.anything;
-
import java.util.List;
import java.util.ListIterator;
diff --git a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/waits/Conditions.java b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/waits/Conditions.java
index 0b09f71e..38d83b15 100644
--- a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/waits/Conditions.java
+++ b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/waits/Conditions.java
@@ -15,7 +15,6 @@ package org.eclipse.swtbot.swt.finder.waits;
import org.eclipse.swt.widgets.MenuItem;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Widget;
-import org.eclipse.swtbot.swt.finder.SWTBotWidget;
import org.eclipse.swtbot.swt.finder.widgets.AbstractSWTBot;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
diff --git a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/AbstractSWTBot.java b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/AbstractSWTBot.java
index fe5471a5..13281325 100644
--- a/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/AbstractSWTBot.java
+++ b/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/widgets/AbstractSWTBot.java
@@ -49,7 +49,6 @@ import org.eclipse.swtbot.swt.finder.utils.SWTUtils;
import org.eclipse.swtbot.swt.finder.utils.Traverse;
import org.eclipse.swtbot.swt.finder.utils.WidgetTextDescription;
import org.eclipse.swtbot.swt.finder.utils.internal.Assert;
-import org.eclipse.swtbot.swt.finder.waits.Conditions;
import org.eclipse.swtbot.swt.finder.waits.DefaultCondition;
import org.hamcrest.Matcher;
import org.hamcrest.SelfDescribing;

Back to the top