Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-07-28 19:28:58 +0000
committerFrank Becker2012-07-28 19:28:58 +0000
commiteff09247f39e12c1aa0cc13a0f07c3ecb41e6a96 (patch)
tree52aa232577ed78c31a67d5aa56eed88ba8966a87 /org.eclipse.mylyn.tasks.ui
parent17ca9f7a4fce6a601da1ad7be38e4815e017899f (diff)
downloadorg.eclipse.mylyn.tasks-eff09247f39e12c1aa0cc13a0f07c3ecb41e6a96.tar.gz
org.eclipse.mylyn.tasks-eff09247f39e12c1aa0cc13a0f07c3ecb41e6a96.tar.xz
org.eclipse.mylyn.tasks-eff09247f39e12c1aa0cc13a0f07c3ecb41e6a96.zip
NEW - bug 386143: upgrade test servers to Bugzilla 4.2.2, 4.0.7, and
3.6.10 https://bugs.eclipse.org/bugs/show_bug.cgi?id=386143
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java21
1 files changed, 6 insertions, 15 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
index 6003abedb..a65ea2bb1 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositorySettingsPage.java
@@ -359,11 +359,8 @@ public abstract class AbstractRepositorySettingsPage extends AbstractTaskReposit
}
});
- GridDataFactory.fillDefaults()
- .hint(300, SWT.DEFAULT)
- .grab(true, false)
- .span(2, SWT.DEFAULT)
- .applyTo(serverUrlCombo);
+ GridDataFactory.fillDefaults().hint(300, SWT.DEFAULT).grab(true, false).span(2, SWT.DEFAULT).applyTo(
+ serverUrlCombo);
repositoryLabelEditor = new StringFieldEditor("", LABEL_REPOSITORY_LABEL, StringFieldEditor.UNLIMITED, //$NON-NLS-1$
compositeContainer) {
@@ -716,11 +713,8 @@ public abstract class AbstractRepositorySettingsPage extends AbstractTaskReposit
section.setClient(certAuthComp);
certAuthButton = new Button(certAuthComp, SWT.CHECK);
- GridDataFactory.fillDefaults()
- .indent(0, 5)
- .align(SWT.LEFT, SWT.TOP)
- .span(3, SWT.DEFAULT)
- .applyTo(certAuthButton);
+ GridDataFactory.fillDefaults().indent(0, 5).align(SWT.LEFT, SWT.TOP).span(3, SWT.DEFAULT).applyTo(
+ certAuthButton);
certAuthButton.setText(Messages.AbstractRepositorySettingsPage_Enable_certificate_authentification);
@@ -811,11 +805,8 @@ public abstract class AbstractRepositorySettingsPage extends AbstractTaskReposit
section.setClient(httpAuthComp);
httpAuthButton = new Button(httpAuthComp, SWT.CHECK);
- GridDataFactory.fillDefaults()
- .indent(0, 5)
- .align(SWT.LEFT, SWT.TOP)
- .span(3, SWT.DEFAULT)
- .applyTo(httpAuthButton);
+ GridDataFactory.fillDefaults().indent(0, 5).align(SWT.LEFT, SWT.TOP).span(3, SWT.DEFAULT).applyTo(
+ httpAuthButton);
httpAuthButton.setText(Messages.AbstractRepositorySettingsPage_Enable_http_authentication);

Back to the top