Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Lindberg2009-04-15 15:07:15 +0000
committerHenrik Lindberg2009-04-15 15:07:15 +0000
commit07b34b3731226ef282b31452590076f1fd9ed1bb (patch)
treead1a0e71e8856864242b972f52b0c2b4c6ba29f6 /bundles/org.eclipse.equinox.p2.touchpoint.natives
parent9d71e42c8503ba2c111060c2b2fb1ec91eabedd9 (diff)
downloadrt.equinox.p2-07b34b3731226ef282b31452590076f1fd9ed1bb.tar.gz
rt.equinox.p2-07b34b3731226ef282b31452590076f1fd9ed1bb.tar.xz
rt.equinox.p2-07b34b3731226ef282b31452590076f1fd9ed1bb.zip
Cleanup - removed unwanted @author tags
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.natives')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java1
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/LazyBackupStore.java1
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java3
3 files changed, 1 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
index bc5580caa..fab9da991 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
@@ -87,7 +87,6 @@ import org.eclipse.osgi.util.NLS;
* corresponding to Windows drive letters. Typically, on UN*X there will only be a "_" directory in the backup root,
* and on windows there will typically be a single directory called "C".
*
- * @author henrik.lindberg@cloudsmith.com
*
*/
public class BackupStore implements IBackupStore {
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/LazyBackupStore.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/LazyBackupStore.java
index b0ef233ec..e3dbc4c6f 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/LazyBackupStore.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/LazyBackupStore.java
@@ -17,7 +17,6 @@ import java.io.IOException;
* LazyBackupStore is a BackupStore that only instantiates a real backup store
* when needed.
*
- * @author henrik.lindberg@cloudsmith.com
*
*/
public class LazyBackupStore implements IBackupStore {
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
index d57ef3b14..c94c66853 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
@@ -31,7 +31,6 @@ import org.eclipse.osgi.util.NLS;
* If the source is a directory, a merge copy to the target is performed.
* Copy will copy files and directories (recursively).
*
- * @author henrik.lindberg@cloudsmith.com
*/
public class CopyAction extends ProvisioningAction {
public static final String ID = "cp"; //$NON-NLS-1$
@@ -146,7 +145,7 @@ public class CopyAction extends ProvisioningAction {
for (int i = 0; i < children.length; i++)
xcopy(copiedFiles, children[i], new File(target, children[i].getName()), overwrite, backupStore);
return;
- }
+ }
if (target.exists() && !overwrite)
throw new IOException("Target: " + target + " already exists"); //$NON-NLS-1$//$NON-NLS-2$

Back to the top