Skip to content

Commit a75d4f9

Browse files
Remove Javadoc Linebreaks
1 parent 7aadeb9 commit a75d4f9

File tree

1 file changed

+14
-28
lines changed

1 file changed

+14
-28
lines changed

src/main/java/rx/functions/Functions.java

Lines changed: 14 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ private Functions() {
2121
}
2222

2323
/**
24-
* Converts a {@link Func0} to a {@link FuncN} to allow heterogeneous handling of functions with different
25-
* arities.
24+
* Converts a {@link Func0} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
2625
*
2726
* @param f
2827
* the {@code Func0} to convert
@@ -43,8 +42,7 @@ public R call(Object... args) {
4342
}
4443

4544
/**
46-
* Converts a {@link Func1} to a {@link FuncN} to allow heterogeneous handling of functions with different
47-
* arities.
45+
* Converts a {@link Func1} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
4846
*
4947
* @param f
5048
* the {@code Func1} to convert
@@ -66,8 +64,7 @@ public R call(Object... args) {
6664
}
6765

6866
/**
69-
* Converts a {@link Func2} to a {@link FuncN} to allow heterogeneous handling of functions with different
70-
* arities.
67+
* Converts a {@link Func2} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
7168
*
7269
* @param f
7370
* the {@code Func2} to convert
@@ -89,8 +86,7 @@ public R call(Object... args) {
8986
}
9087

9188
/**
92-
* Converts a {@link Func3} to a {@link FuncN} to allow heterogeneous handling of functions with different
93-
* arities.
89+
* Converts a {@link Func3} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
9490
*
9591
* @param f
9692
* the {@code Func3} to convert
@@ -112,8 +108,7 @@ public R call(Object... args) {
112108
}
113109

114110
/**
115-
* Converts a {@link Func4} to a {@link FuncN} to allow heterogeneous handling of functions with different
116-
* arities.
111+
* Converts a {@link Func4} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
117112
*
118113
* @param f
119114
* the {@code Func4} to convert
@@ -135,8 +130,7 @@ public R call(Object... args) {
135130
}
136131

137132
/**
138-
* Converts a {@link Func5} to a {@link FuncN} to allow heterogeneous handling of functions with different
139-
* arities.
133+
* Converts a {@link Func5} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
140134
*
141135
* @param f
142136
* the {@code Func5} to convert
@@ -158,8 +152,7 @@ public R call(Object... args) {
158152
}
159153

160154
/**
161-
* Converts a {@link Func6} to a {@link FuncN} to allow heterogeneous handling of functions with different
162-
* arities.
155+
* Converts a {@link Func6} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
163156
*
164157
* @param f
165158
* the {@code Func6} to convert
@@ -181,8 +174,7 @@ public R call(Object... args) {
181174
}
182175

183176
/**
184-
* Converts a {@link Func7} to a {@link FuncN} to allow heterogeneous handling of functions with different
185-
* arities.
177+
* Converts a {@link Func7} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
186178
*
187179
* @param f
188180
* the {@code Func7} to convert
@@ -204,8 +196,7 @@ public R call(Object... args) {
204196
}
205197

206198
/**
207-
* Converts a {@link Func8} to a {@link FuncN} to allow heterogeneous handling of functions with different
208-
* arities.
199+
* Converts a {@link Func8} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
209200
*
210201
* @param f
211202
* the {@code Func8} to convert
@@ -227,8 +218,7 @@ public R call(Object... args) {
227218
}
228219

229220
/**
230-
* Converts a {@link Func9} to a {@link FuncN} to allow heterogeneous handling of functions with different
231-
* arities.
221+
* Converts a {@link Func9} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
232222
*
233223
* @param f
234224
* the {@code Func9} to convert
@@ -250,8 +240,7 @@ public R call(Object... args) {
250240
}
251241

252242
/**
253-
* Converts an {@link Action0} to a {@link FuncN} to allow heterogeneous handling of functions with
254-
* different arities.
243+
* Converts an {@link Action0} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
255244
*
256245
* @param f
257246
* the {@code Action0} to convert
@@ -273,8 +262,7 @@ public Void call(Object... args) {
273262
}
274263

275264
/**
276-
* Converts an {@link Action1} to a {@link FuncN} to allow heterogeneous handling of functions with
277-
* different arities.
265+
* Converts an {@link Action1} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
278266
*
279267
* @param f
280268
* the {@code Action1} to convert
@@ -297,8 +285,7 @@ public Void call(Object... args) {
297285
}
298286

299287
/**
300-
* Converts an {@link Action2} to a {@link FuncN} to allow heterogeneous handling of functions with
301-
* different arities.
288+
* Converts an {@link Action2} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
302289
*
303290
* @param f
304291
* the {@code Action2} to convert
@@ -321,8 +308,7 @@ public Void call(Object... args) {
321308
}
322309

323310
/**
324-
* Converts an {@link Action3} to a {@link FuncN} to allow heterogeneous handling of functions with
325-
* different arities.
311+
* Converts an {@link Action3} to a {@link FuncN} to allow heterogeneous handling of functions with different arities.
326312
*
327313
* @param f
328314
* the {@code Action3} to convert

0 commit comments

Comments
 (0)