From 1fddbfab1ab06fbd80b6f6235411985b41bdfdac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20L=C3=A4ubrich?= Date: Fri, 12 Jan 2024 16:49:55 +0100 Subject: [PATCH] Replace by tags in javadoc --- .../equinox/concurrent/future/IFuture.java | 14 ++++---- .../org/eclipse/equinox/device/Activator.java | 2 +- .../eclipse/equinox/device/DeviceTracker.java | 2 +- .../equinox/device/DriverLocatorTracker.java | 2 +- .../eclipse/equinox/device/DriverTracker.java | 2 +- .../preferences/EclipsePreferences.java | 2 +- .../equinox/internal/useradmin/Group.java | 12 +++---- .../equinox/internal/useradmin/Role.java | 10 +++--- .../equinox/internal/useradmin/User.java | 8 ++--- .../equinox/internal/useradmin/UserAdmin.java | 10 +++--- .../useradmin/UserAdminEventProducer.java | 20 ++++++------ .../osgi/internal/resolver/StateImpl.java | 6 ++-- .../eclipse/osgi/framework/util/Headers.java | 2 +- .../internal/framework/BundleContextImpl.java | 32 +++++++++---------- .../ServiceRegistrationImpl.java | 2 +- .../pluginconversion/PluginConverter.java | 4 +-- .../eclipse/osgi/storage/PermissionData.java | 10 +++--- .../osgi/storage/bundlefile/BundleEntry.java | 2 +- .../storage/bundlefile/FileBundleEntry.java | 2 +- .../storage/bundlefile/ZipBundleEntry.java | 2 +- 20 files changed, 73 insertions(+), 73 deletions(-) diff --git a/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java b/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java index 1b8d37e4d0e..24faaf94765 100644 --- a/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java +++ b/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java @@ -58,8 +58,8 @@ public interface IFuture { /** * Cancel the operation * - * @return false if the operation could not be canceled, typically - * because it has already completed normally; true otherwise + * @return false if the operation could not be canceled, typically + * because it has already completed normally; true otherwise */ public boolean cancel(); @@ -119,7 +119,7 @@ public interface IFuture { /** *

- * Returns true if any underlying operation(s) have completed. + * Returns true if any underlying operation(s) have completed. *

*

* If this future represents access to just one operation, then this method and @@ -133,14 +133,14 @@ public interface IFuture { * first operation is completed, it will return false. *

* - * @return true if any operations represented by this future have + * @return true if any operations represented by this future have * completed. */ boolean hasValue(); /** *

- * Returns true if all underlying operation(s) have been + * Returns true if all underlying operation(s) have been * completed. *

*

@@ -156,11 +156,11 @@ public interface IFuture { *

*

* Completion can be due to normal operation completion, an exception, or user - * cancellation -- in all of these cases, this method will return true + * cancellation -- in all of these cases, this method will return true * if all underlying operation(s) have been completed. *

* - * @return true if all operation(s) have completed in some manner. + * @return true if all operation(s) have completed in some manner. */ boolean isDone(); diff --git a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/Activator.java b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/Activator.java index 1a3b4ff996d..ac6f3e1f9e8 100644 --- a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/Activator.java +++ b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/Activator.java @@ -265,7 +265,7 @@ public void stop(BundleContext contxt) throws Exception { * * @param reference Reference to service being added to the ServiceTracker. * @return The service object to be tracked for the ServiceReference or - * null if the ServiceReference should not be tracked. + * null if the ServiceReference should not be tracked. */ public Object addingService(ServiceReference reference) { if (Activator.DEBUG) { diff --git a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DeviceTracker.java b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DeviceTracker.java index 7a9eab7bc33..8c5c282bb13 100644 --- a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DeviceTracker.java +++ b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DeviceTracker.java @@ -91,7 +91,7 @@ public void close() { * * @param reference Reference to service being added to the ServiceTracker. * @return The service object to be tracked for the ServiceReference or - * null if the ServiceReference should not be tracked. + * null if the ServiceReference should not be tracked. */ public Object addingService(ServiceReference reference) { if (Activator.DEBUG) { diff --git a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java index b570b7a255c..6ea32921d32 100644 --- a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java +++ b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java @@ -69,7 +69,7 @@ public DriverLocatorTracker(Activator manager) { * * @param reference Reference to service being added to the ServiceTracker. * @return The service object to be tracked for the ServiceReference or - * null if the ServiceReference should not be tracked. + * null if the ServiceReference should not be tracked. */ public Object addingService(ServiceReference reference) { if (Activator.DEBUG) { diff --git a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverTracker.java b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverTracker.java index 6bfcc0d709d..26bbe6a26a1 100644 --- a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverTracker.java +++ b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverTracker.java @@ -87,7 +87,7 @@ public DriverTracker(Activator manager) { * * @param reference Reference to service being added to the ServiceTracker. * @return The service object to be tracked for the ServiceReference or - * null if the ServiceReference should not be tracked. + * null if the ServiceReference should not be tracked. */ public Object addingService(ServiceReference reference) { if (Activator.DEBUG) { diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java index c2dd35030ed..761b1dbe8eb 100644 --- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java +++ b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java @@ -38,7 +38,7 @@ * * Implementation notes: * - * - For thread safety, we always synchronize on writeLock when writing + * - For thread safety, we always synchronize on writeLock when writing * the children or properties fields. Must ensure we don't synchronize when * calling client code such as listeners. * diff --git a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Group.java b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Group.java index c773dc51879..5e70414625f 100644 --- a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Group.java +++ b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Group.java @@ -102,8 +102,8 @@ protected Group(String name, UserAdmin useradmin) { * name matches that of the specified role. * * @throws SecurityException If a security manager exists and the caller does - * not have the UserAdminPermission with name - * admin. + * not have the UserAdminPermission with name + * admin. */ @Override public boolean addMember(org.osgi.service.useradmin.Role role) { @@ -146,8 +146,8 @@ protected boolean addMember(org.osgi.service.useradmin.Role role, boolean store) * whose name matches that of the specified role. * * @throws SecurityException If a security manager exists and the caller does - * not have the UserAdminPermission with name - * admin. + * not have the UserAdminPermission with name + * admin. */ @Override public boolean addRequiredMember(org.osgi.service.useradmin.Role role) { @@ -186,8 +186,8 @@ protected boolean addRequiredMember(org.osgi.service.useradmin.Role role, boolea * false. * * @throws SecurityException If a security manager exists and the caller does - * not have the UserAdminPermission with name - * admin. + * not have the UserAdminPermission with name + * admin. */ @Override public boolean removeMember(org.osgi.service.useradmin.Role role) { diff --git a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Role.java b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Role.java index f272fa65c21..9ce8ddeeaad 100644 --- a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Role.java +++ b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/Role.java @@ -31,8 +31,8 @@ * propagated to the {@link UserAdmin} service and made persistent. *

* Every UserAdmin contains a set of predefined roles that are always present - * and cannot be removed. All predefined roles are of type ROLE. This - * version of the org.osgi.service.useradmin package defines a single + * and cannot be removed. All predefined roles are of type ROLE. This + * version of the org.osgi.service.useradmin package defines a single * predefined role named "user.anyone", which is inherited by any * other role. Other predefined roles may be added in the future. */ @@ -86,10 +86,10 @@ public int getType() { * cause a UserAdminEvent of type {@link UserAdminEvent#ROLE_CHANGED} to be * broadcast to any UserAdminListeners. *

- * Only objects of type String may be used as property keys, and only - * objects of type String or byte[] may be used as property + * Only objects of type String may be used as property keys, and only + * objects of type String or byte[] may be used as property * values. Any other types will cause an exception of type - * IllegalArgumentException to be raised. + * IllegalArgumentException to be raised. *

* In order to add, change, or remove a property in the returned Dictionary, a * {@link UserAdminPermission} named after the property name (or a prefix of it) diff --git a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/User.java b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/User.java index 9dfee8f6d67..323899d9a11 100644 --- a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/User.java +++ b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/User.java @@ -79,9 +79,9 @@ public Dictionary getCredentials() { * Checks to see if this User has a credential with the specified key set to the * specified value. *

- * If the specified credential value is not of type String or - * byte[], it is ignored, that is, false is returned (as - * opposed to an IllegalArgumentException being raised). + * If the specified credential value is not of type String or + * byte[], it is ignored, that is, false is returned (as + * opposed to an IllegalArgumentException being raised). * * @param key The credential key. * @param value The credential value. @@ -90,7 +90,7 @@ public Dictionary getCredentials() { * false otherwise. * * @throws SecurityException If a security manager exists and the caller does - * not have the UserAdminPermission named + * not have the UserAdminPermission named * after the credential key (or a prefix of it) with * action getCredential. */ diff --git a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdmin.java b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdmin.java index 2d53cdb9273..b2c7a52b283 100644 --- a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdmin.java +++ b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdmin.java @@ -95,12 +95,12 @@ protected void setServiceReference(ServiceReference reference) { * @return The newly created role, or null if a role with the given * name already exists. * - * @throws IllegalArgumentException if type is invalid. + * @throws IllegalArgumentException if type is invalid. * * @throws SecurityException If a security manager exists and the caller * does not have the - * UserAdminPermission with name - * admin. + * UserAdminPermission with name + * admin. */ @Override public org.osgi.service.useradmin.Role createRole(String name, int type) { @@ -164,8 +164,8 @@ protected org.osgi.service.useradmin.Role createRole(String name, int type, bool * UserAdmin and could be removed, otherwise false. * * @throws SecurityException If a security manager exists and the caller does - * not have the UserAdminPermission with name - * admin. + * not have the UserAdminPermission with name + * admin. */ @Override public boolean removeRole(String name) { diff --git a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdminEventProducer.java b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdminEventProducer.java index 66bcb1df02a..fc87ff0b61b 100644 --- a/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdminEventProducer.java +++ b/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/UserAdminEventProducer.java @@ -72,20 +72,20 @@ protected void generateEvent(int type, Role role) { } /** - * A service is being added to the ServiceTracker object. + * A service is being added to the ServiceTracker object. * *

* This method is called before a service which matched the search parameters of - * the ServiceTracker object is added to it. This method should return - * the service object to be tracked for this ServiceReference object. - * The returned service object is stored in the ServiceTracker object - * and is available from the getService and getServices + * the ServiceTracker object is added to it. This method should return + * the service object to be tracked for this ServiceReference object. + * The returned service object is stored in the ServiceTracker object + * and is available from the getService and getServices * methods. * * @param reference Reference to service being added to the - * ServiceTracker object. - * @return The service object to be tracked for the ServiceReference - * object or null if the ServiceReference object + * ServiceTracker object. + * @return The service object to be tracked for the ServiceReference + * object or null if the ServiceReference object * should not be tracked. */ @Override @@ -98,11 +98,11 @@ public Object addingService(ServiceReference reference) { } /** - * A service tracked by the ServiceTracker object has been removed. + * A service tracked by the ServiceTracker object has been removed. * *

* This method is called after a service is no longer being tracked by the - * ServiceTracker object. + * ServiceTracker object. * * @param reference Reference to service that has been removed. * @param service The service object for the removed service. diff --git a/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/internal/resolver/StateImpl.java b/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/internal/resolver/StateImpl.java index ef6e6cce64c..7a7df24c717 100644 --- a/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/internal/resolver/StateImpl.java +++ b/bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/internal/resolver/StateImpl.java @@ -91,7 +91,7 @@ public abstract class StateImpl implements State { * syntax version 2 will not recognize this header. * *

The attribute value may be retrieved from the - * Dictionary object returned by the Bundle.getHeaders method. + * Dictionary object returned by the Bundle.getHeaders method. * @deprecated */ @Deprecated @@ -102,7 +102,7 @@ public abstract class StateImpl implements State { * for Require-Bundle * identifying that any packages that are provided * by the required bundle must be reprovided by the requiring bundle. - * The default value is false. + * The default value is false. *

* The attribute value is encoded in the Require-Bundle manifest * header like: @@ -123,7 +123,7 @@ public abstract class StateImpl implements State { * identifying that a required bundle is optional and that * the requiring bundle can be resolved if there is no * suitable required bundle. - * The default value is false. + * The default value is false. * *

The attribute value is encoded in the Require-Bundle manifest * header like: diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/framework/util/Headers.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/framework/util/Headers.java index 5dc1a330d47..881d1c62f43 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/framework/util/Headers.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/framework/util/Headers.java @@ -223,7 +223,7 @@ public synchronized int size() { /** * Tests if this dictionary maps no keys to value. The general contract - * for the isEmpty method is that the result is true if and only + * for the isEmpty method is that the result is true if and only * if this dictionary contains no entries. * * @return true if this dictionary maps no keys to values; diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/BundleContextImpl.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/BundleContextImpl.java index eae2c39c944..38c296982a1 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/BundleContextImpl.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/framework/BundleContextImpl.java @@ -519,46 +519,46 @@ public ServiceRegistration registerService(String clazz, Object service, Dict } /** - * Returns a list of ServiceReference objects. This method returns a list of - * ServiceReference objects for services which implement and were registered under + * Returns a list of ServiceReference objects. This method returns a list of + * ServiceReference objects for services which implement and were registered under * the specified class and match the specified filter criteria. * *

The list is valid at the time of the call to this method, however as the Framework is * a very dynamic environment, services can be modified or unregistered at anytime. * - *

filter is used to select the registered service whose + *

filter is used to select the registered service whose * properties objects contain keys and values which satisfy the filter. * See {@link Filter}for a description of the filter string syntax. * - *

If filter is null, all registered services + *

If filter is null, all registered services * are considered to match the filter. - *

If filter cannot be parsed, an {@link InvalidSyntaxException} will + *

If filter cannot be parsed, an {@link InvalidSyntaxException} will * be thrown with a human readable message where the filter became unparsable. * *

The following steps are required to select a service: *

    *
  1. If the Java Runtime Environment supports permissions, the caller is checked for the - * ServicePermission to get the service with the specified class. - * If the caller does not have the correct permission, null is returned. - *
  2. If the filter string is not null, the filter string is + * ServicePermission to get the service with the specified class. + * If the caller does not have the correct permission, null is returned. + *
  3. If the filter string is not null, the filter string is * parsed and the set of registered services which satisfy the filter is * produced. - * If the filter string is null, then all registered services + * If the filter string is null, then all registered services * are considered to satisfy the filter. - *
  4. If clazz is not null, the set is further reduced to - * those services which are an instanceof and were registered under the specified class. + *
  5. If clazz is not null, the set is further reduced to + * those services which are an instanceof and were registered under the specified class. * The complete list of classes of which a service is an instance and which * were specified when the service was registered is available from the * service's {@link Constants#OBJECTCLASS}property. - *
  6. An array of ServiceReference to the selected services is returned. + *
  7. An array of ServiceReference to the selected services is returned. *
* * @param clazz The class name with which the service was registered, or - * null for all services. + * null for all services. * @param filter The filter criteria. - * @return An array of ServiceReference objects, or - * null if no services are registered which satisfy the search. - * @exception InvalidSyntaxException If filter contains + * @return An array of ServiceReference objects, or + * null if no services are registered which satisfy the search. + * @exception InvalidSyntaxException If filter contains * an invalid filter string which cannot be parsed. */ @Override diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl.java index e6b4212e77a..48af71190b0 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl.java @@ -162,7 +162,7 @@ void register(Dictionary props) { * @exception java.lang.IllegalStateException If * this ServiceRegistration has already been unregistered. * - * @exception IllegalArgumentException If the properties + * @exception IllegalArgumentException If the properties * parameter contains case variants of the same key name. */ @Override diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java index c8681083576..7c97dc69d89 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/service/pluginconversion/PluginConverter.java @@ -17,8 +17,8 @@ import java.util.Dictionary; /** - * A plug-in convertor is able to convert plug-in manifest files (plugin.xml) and - * fragment manifest files (fragment.xml) to bundle manifest files (MANIFEST.MF). + * A plug-in convertor is able to convert plug-in manifest files (plugin.xml) and + * fragment manifest files (fragment.xml) to bundle manifest files (MANIFEST.MF). *

* This interface is not intended to be implemented by clients. *

diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/PermissionData.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/PermissionData.java index 4b3087475fe..73cd943367d 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/PermissionData.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/PermissionData.java @@ -37,7 +37,7 @@ public class PermissionData { * exists in persistent storage. * * @return The locations that have permission data in - * persistent storage, or null if there is no permission data + * persistent storage, or null if there is no permission data * in persistent storage. */ public String[] getLocations() { @@ -56,10 +56,10 @@ public String[] getLocations() { * * @param location The location whose permission data is to * be returned. - * The location can be null for the default permission data. + * The location can be null for the default permission data. * * @return The permission data assigned to the specified - * location, or null if that location has not been assigned any + * location, or null if that location has not been assigned any * permission data. */ public String[] getPermissionData(String location) { @@ -78,8 +78,8 @@ public String[] getPermissionData(String location) { * * @param location The location that will be assigned the * permissions. - * The location can be null for the default permission data. - * @param data The permission data to be assigned, or null + * The location can be null for the default permission data. + * @param data The permission data to be assigned, or null * if the specified location is to be removed from persistent storaqe. */ public void setPermissionData(String location, String[] data) { diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/BundleEntry.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/BundleEntry.java index 1bb54a47153..b069213dd56 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/BundleEntry.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/BundleEntry.java @@ -53,7 +53,7 @@ public abstract class BundleEntry { /** * Get the modification time for this BundleEntry. *

If the modification time has not been set, - * this method will return -1. + * this method will return -1. * * @return last modification time. */ diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/FileBundleEntry.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/FileBundleEntry.java index 77d605bce13..6cc36572f12 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/FileBundleEntry.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/FileBundleEntry.java @@ -82,7 +82,7 @@ public String getName() { /** * Get the modification time for this BundleEntry. *

If the modification time has not been set, - * this method will return -1. + * this method will return -1. * * @return last modification time. */ diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/ZipBundleEntry.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/ZipBundleEntry.java index b15a4cca454..6476696fc22 100644 --- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/ZipBundleEntry.java +++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/ZipBundleEntry.java @@ -80,7 +80,7 @@ public String getName() { /** * Get the modification time for this BundleEntry. *

If the modification time has not been set, - * this method will return -1. + * this method will return -1. * * @return last modification time. */