Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-09-19 09:25:32 +0000
committerAlexander Kurtakov2017-09-19 09:25:32 +0000
commitd36a8f030d2427dc776f7bf5e3879782ac3f7fec (patch)
tree986d6342dd6709f12b396fb04b604e08d4291bd2 /bundles/org.eclipse.equinox.p2.touchpoint.eclipse
parent5b2a14f5019cb889a97f6604bd3fe16384104b93 (diff)
downloadrt.equinox.p2-d36a8f030d2427dc776f7bf5e3879782ac3f7fec.tar.gz
rt.equinox.p2-d36a8f030d2427dc776f7bf5e3879782ac3f7fec.tar.xz
rt.equinox.p2-d36a8f030d2427dc776f7bf5e3879782ac3f7fec.zip
Bug 522479 - Change ActionConstants.PARM_OPTIONS to be String
It is string anyway and it can not be used currently in ChmodAction.execute as it expects Map<String, String> as parameters. Change-Id: I80d93a74a4942b71fb0ddae936d12a936d61c979 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.eclipse')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/ActionConstants.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/ActionConstants.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/ActionConstants.java
index 27bd0f618..039da0358 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/ActionConstants.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/ActionConstants.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2011 IBM Corporation and others. All rights reserved. This
+ * Copyright (c) 2008, 2017 IBM Corporation 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 http://www.eclipse.org/legal/epl-v10.html
@@ -47,5 +47,5 @@ public class ActionConstants {
public static final String PARM_REPOSITORY_TYPE = "type"; //$NON-NLS-1$
public static final String PARM_REPOSITORY_ENABLEMENT = "enabled"; //$NON-NLS-1$
public static final String PARM_REPOSITORY_NICKNAME = "name"; //$NON-NLS-1$
- public static final Object PARM_OPTIONS = "options"; //$NON-NLS-1$
+ public static final String PARM_OPTIONS = "options"; //$NON-NLS-1$
}

Back to the top