Skip to content

Commit 97063ed

Browse files
committed
remove trailing whitespace
1 parent 1adb0e7 commit 97063ed

File tree

80 files changed

+663
-663
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+663
-663
lines changed

src/asm/scala/tools/asm/AnnotationVisitor.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* A visitor to visit a Java annotation. The methods of this class must be
3434
* called in the following order: ( <tt>visit</tt> | <tt>visitEnum</tt> |
3535
* <tt>visitAnnotation</tt> | <tt>visitArray</tt> )* <tt>visitEnd</tt>.
36-
*
36+
*
3737
* @author Eric Bruneton
3838
* @author Eugene Kuleshov
3939
*/
@@ -53,7 +53,7 @@ public abstract class AnnotationVisitor {
5353

5454
/**
5555
* Constructs a new {@link AnnotationVisitor}.
56-
*
56+
*
5757
* @param api
5858
* the ASM API version implemented by this visitor. Must be one
5959
* of {@link Opcodes#ASM4} or {@link Opcodes#ASM5}.
@@ -64,7 +64,7 @@ public AnnotationVisitor(final int api) {
6464

6565
/**
6666
* Constructs a new {@link AnnotationVisitor}.
67-
*
67+
*
6868
* @param api
6969
* the ASM API version implemented by this visitor. Must be one
7070
* of {@link Opcodes#ASM4} or {@link Opcodes#ASM5}.
@@ -82,7 +82,7 @@ public AnnotationVisitor(final int api, final AnnotationVisitor av) {
8282

8383
/**
8484
* Visits a primitive value of the annotation.
85-
*
85+
*
8686
* @param name
8787
* the value name.
8888
* @param value
@@ -103,7 +103,7 @@ public void visit(String name, Object value) {
103103

104104
/**
105105
* Visits an enumeration value of the annotation.
106-
*
106+
*
107107
* @param name
108108
* the value name.
109109
* @param desc
@@ -119,7 +119,7 @@ public void visitEnum(String name, String desc, String value) {
119119

120120
/**
121121
* Visits a nested annotation value of the annotation.
122-
*
122+
*
123123
* @param name
124124
* the value name.
125125
* @param desc
@@ -142,7 +142,7 @@ public AnnotationVisitor visitAnnotation(String name, String desc) {
142142
* types (such as byte, boolean, short, char, int, long, float or double)
143143
* can be passed as value to {@link #visit visit}. This is what
144144
* {@link ClassReader} does.
145-
*
145+
*
146146
* @param name
147147
* the value name.
148148
* @return a visitor to visit the actual array value elements, or

src/asm/scala/tools/asm/AnnotationWriter.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/**
3333
* An {@link AnnotationVisitor} that generates annotations in bytecode form.
34-
*
34+
*
3535
* @author Eric Bruneton
3636
* @author Eugene Kuleshov
3737
*/
@@ -89,7 +89,7 @@ final class AnnotationWriter extends AnnotationVisitor {
8989

9090
/**
9191
* Constructs a new {@link AnnotationWriter}.
92-
*
92+
*
9393
* @param cw
9494
* the class writer to which this annotation must be added.
9595
* @param named
@@ -237,7 +237,7 @@ public void visitEnd() {
237237

238238
/**
239239
* Returns the size of this annotation writer list.
240-
*
240+
*
241241
* @return the size of this annotation writer list.
242242
*/
243243
int getSize() {
@@ -253,7 +253,7 @@ int getSize() {
253253
/**
254254
* Puts the annotations of this annotation writer list into the given byte
255255
* vector.
256-
*
256+
*
257257
* @param out
258258
* where the annotations must be put.
259259
*/
@@ -281,7 +281,7 @@ void put(final ByteVector out) {
281281

282282
/**
283283
* Puts the given annotation lists into the given byte vector.
284-
*
284+
*
285285
* @param panns
286286
* an array of annotation writer lists.
287287
* @param off
@@ -319,7 +319,7 @@ static void put(final AnnotationWriter[] panns, final int off,
319319
/**
320320
* Puts the given type reference and type path into the given bytevector.
321321
* LOCAL_VARIABLE and RESOURCE_VARIABLE target types are not supported.
322-
*
322+
*
323323
* @param typeRef
324324
* a reference to the annotated type. See {@link TypeReference}.
325325
* @param typePath

src/asm/scala/tools/asm/Attribute.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/**
3333
* A non standard class, field, method or code attribute.
34-
*
34+
*
3535
* @author Eric Bruneton
3636
* @author Eugene Kuleshov
3737
*/
@@ -54,7 +54,7 @@ public class Attribute {
5454

5555
/**
5656
* Constructs a new empty attribute.
57-
*
57+
*
5858
* @param type
5959
* the type of the attribute.
6060
*/
@@ -65,7 +65,7 @@ protected Attribute(final String type) {
6565
/**
6666
* Returns <tt>true</tt> if this type of attribute is unknown. The default
6767
* implementation of this method always returns <tt>true</tt>.
68-
*
68+
*
6969
* @return <tt>true</tt> if this type of attribute is unknown.
7070
*/
7171
public boolean isUnknown() {
@@ -74,7 +74,7 @@ public boolean isUnknown() {
7474

7575
/**
7676
* Returns <tt>true</tt> if this type of attribute is a code attribute.
77-
*
77+
*
7878
* @return <tt>true</tt> if this type of attribute is a code attribute.
7979
*/
8080
public boolean isCodeAttribute() {
@@ -83,7 +83,7 @@ public boolean isCodeAttribute() {
8383

8484
/**
8585
* Returns the labels corresponding to this attribute.
86-
*
86+
*
8787
* @return the labels corresponding to this attribute, or <tt>null</tt> if
8888
* this attribute is not a code attribute that contains labels.
8989
*/
@@ -96,7 +96,7 @@ protected Label[] getLabels() {
9696
* <i>new</i> {@link Attribute} object, of type {@link #type type},
9797
* corresponding to the <tt>len</tt> bytes starting at the given offset, in
9898
* the given class reader.
99-
*
99+
*
100100
* @param cr
101101
* the class that contains the attribute to be read.
102102
* @param off
@@ -133,7 +133,7 @@ protected Attribute read(final ClassReader cr, final int off,
133133

134134
/**
135135
* Returns the byte array form of this attribute.
136-
*
136+
*
137137
* @param cw
138138
* the class to which this attribute must be added. This
139139
* parameter can be used to add to the constant pool of this
@@ -166,7 +166,7 @@ protected ByteVector write(final ClassWriter cw, final byte[] code,
166166

167167
/**
168168
* Returns the length of the attribute list that begins with this attribute.
169-
*
169+
*
170170
* @return the length of the attribute list that begins with this attribute.
171171
*/
172172
final int getCount() {
@@ -181,7 +181,7 @@ final int getCount() {
181181

182182
/**
183183
* Returns the size of all the attributes in this attribute list.
184-
*
184+
*
185185
* @param cw
186186
* the class writer to be used to convert the attributes into
187187
* byte arrays, with the {@link #write write} method.
@@ -219,7 +219,7 @@ final int getSize(final ClassWriter cw, final byte[] code, final int len,
219219
/**
220220
* Writes all the attributes of this attribute list in the given byte
221221
* vector.
222-
*
222+
*
223223
* @param cw
224224
* the class writer to be used to convert the attributes into
225225
* byte arrays, with the {@link #write write} method.

src/asm/scala/tools/asm/ByteVector.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/**
3333
* A dynamically extensible vector of bytes. This class is roughly equivalent to
3434
* a DataOutputStream on top of a ByteArrayOutputStream, but is more efficient.
35-
*
35+
*
3636
* @author Eric Bruneton
3737
*/
3838
public class ByteVector {
@@ -58,7 +58,7 @@ public ByteVector() {
5858
/**
5959
* Constructs a new {@link ByteVector ByteVector} with the given initial
6060
* size.
61-
*
61+
*
6262
* @param initialSize
6363
* the initial size of the byte vector to be constructed.
6464
*/
@@ -69,7 +69,7 @@ public ByteVector(final int initialSize) {
6969
/**
7070
* Puts a byte into this byte vector. The byte vector is automatically
7171
* enlarged if necessary.
72-
*
72+
*
7373
* @param b
7474
* a byte.
7575
* @return this byte vector.
@@ -87,7 +87,7 @@ public ByteVector putByte(final int b) {
8787
/**
8888
* Puts two bytes into this byte vector. The byte vector is automatically
8989
* enlarged if necessary.
90-
*
90+
*
9191
* @param b1
9292
* a byte.
9393
* @param b2
@@ -109,7 +109,7 @@ ByteVector put11(final int b1, final int b2) {
109109
/**
110110
* Puts a short into this byte vector. The byte vector is automatically
111111
* enlarged if necessary.
112-
*
112+
*
113113
* @param s
114114
* a short.
115115
* @return this byte vector.
@@ -129,7 +129,7 @@ public ByteVector putShort(final int s) {
129129
/**
130130
* Puts a byte and a short into this byte vector. The byte vector is
131131
* automatically enlarged if necessary.
132-
*
132+
*
133133
* @param b
134134
* a byte.
135135
* @param s
@@ -152,7 +152,7 @@ ByteVector put12(final int b, final int s) {
152152
/**
153153
* Puts an int into this byte vector. The byte vector is automatically
154154
* enlarged if necessary.
155-
*
155+
*
156156
* @param i
157157
* an int.
158158
* @return this byte vector.
@@ -174,7 +174,7 @@ public ByteVector putInt(final int i) {
174174
/**
175175
* Puts a long into this byte vector. The byte vector is automatically
176176
* enlarged if necessary.
177-
*
177+
*
178178
* @param l
179179
* a long.
180180
* @return this byte vector.
@@ -202,7 +202,7 @@ public ByteVector putLong(final long l) {
202202
/**
203203
* Puts an UTF8 string into this byte vector. The byte vector is
204204
* automatically enlarged if necessary.
205-
*
205+
*
206206
* @param s
207207
* a String whose UTF8 encoded length must be less than 65536.
208208
* @return this byte vector.
@@ -243,7 +243,7 @@ public ByteVector putUTF8(final String s) {
243243
* automatically enlarged if necessary. The string length is encoded in two
244244
* bytes before the encoded characters, if there is space for that (i.e. if
245245
* this.length - i - 2 >= 0).
246-
*
246+
*
247247
* @param s
248248
* the String to encode.
249249
* @param i
@@ -301,7 +301,7 @@ ByteVector encodeUTF8(final String s, int i, int maxByteLength) {
301301
/**
302302
* Puts an array of bytes into this byte vector. The byte vector is
303303
* automatically enlarged if necessary.
304-
*
304+
*
305305
* @param b
306306
* an array of bytes. May be <tt>null</tt> to put <tt>len</tt>
307307
* null bytes into this byte vector.
@@ -324,7 +324,7 @@ public ByteVector putByteArray(final byte[] b, final int off, final int len) {
324324

325325
/**
326326
* Enlarge this byte vector so that it can receive n more bytes.
327-
*
327+
*
328328
* @param size
329329
* number of additional bytes that this byte vector should be
330330
* able to receive.

0 commit comments

Comments
 (0)