Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java
deleted file mode 100644
index f176a6214..000000000
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2013 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
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osgi.storage;
-
-import org.eclipse.osgi.util.NLS;
-
-/**
- * Commom framework adaptor messages.
- * <p>
- * Clients may not extend this class
- * </p>
- * @since 3.1
- */
-public class StorageMsg extends NLS {
-
- public static String ADAPTER_FILEEXIST_EXCEPTION;
- public static String ADAPTOR_DIRECTORY_CREATE_EXCEPTION;
- public static String ADAPTOR_DIRECTORY_EXCEPTION;
- public static String ADAPTOR_URL_CREATE_EXCEPTION;
- public static String ADAPTOR_STORAGE_INIT_FAILED_MSG;
- public static String ADAPTOR_STORAGE_INIT_FAILED_TITLE;
- public static String ECLIPSE_STARTUP_FILEMANAGER_OPEN_ERROR;
-
- public static String BUNDLE_CLASSPATH_ENTRY_NOT_FOUND_EXCEPTION;
- public static String BUNDLE_READ_EXCEPTION;
-
- public static String RESOURCE_NOT_FOUND_EXCEPTION;
-
- public static String URL_INVALID_BUNDLE_ID;
- public static String URL_NO_BUNDLE_FOUND;
- public static String URL_NO_BUNDLE_ID;
-
- private static final String BUNDLE_NAME = "org.eclipse.osgi.storage.ExternalMessages"; //$NON-NLS-1$
-
- static {
- // initialize resource bundles
- NLS.initializeMessages(BUNDLE_NAME, StorageMsg.class);
- }
-
-}

Back to the top