X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/SwapTextEdit.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/SwapTextEdit.java index eb0d247..02105a0 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/SwapTextEdit.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/corext/textmanipulation/SwapTextEdit.java @@ -4,7 +4,6 @@ */ package net.sourceforge.phpdt.internal.corext.textmanipulation; - /** * A SwapTextEdit exchanges to text ranges. */ @@ -12,14 +11,17 @@ public class SwapTextEdit extends MultiTextEdit { /** * Create a new SwapTextEdit * - * @param offset1 the offset of the first text range - * @param length1 the length of the first text range - * @param offset2 the offset of the second text range - * @param length2 the length of the second text range + * @param offset1 + * the offset of the first text range + * @param length1 + * the length of the first text range + * @param offset2 + * the offset of the second text range + * @param length2 + * the length of the second text range */ public SwapTextEdit(int offset1, int length1, int offset2, int length2) { add(new MoveTextEdit(offset1, length1, offset2)); add(new MoveTextEdit(offset2, length2, offset1)); } } -