You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adds a {@link FieldDeclaration} as the first member of the provided {@link
76
-
* ClassOrInterfaceDeclaration}
77
-
*/
75
+
* Adds a {@link FieldDeclaration} as the last member of the provided {@link
76
+
* ClassOrInterfaceDeclaration}. Adding last seems like it would be <a href="https://github.com/pixee/codemodder-java/issues/288">preferred by users and better for JavaParser to match the existing indentation</a>.
private static final String A_REFERENCE_TO_THIS_OBJECT_SO_THAT_METHOD_CALLS_CAN_BE_CHAINED_TOGETHER = "a reference to this object so that method calls can be chained together.";
29
-
30
-
private static final String FOR_POLLING = " for polling";
31
-
32
-
private static final String OR_UNTIL_IT_IS_DETERMINED_THAT_THE_RESOURCE_WILL_NEVER = "or until it is determined that the resource will never ";
33
-
34
-
private static final String CODE_N_IS_MET = "{@code $N} is met, ";
35
-
36
-
private static final String POLLS_LINK_T_N_API_UNTIL_THE_DESIRED_CONDITION = "Polls {@link $T#$N} API until the desired condition ";
37
-
38
28
private WaiterDocs() {
39
29
}
40
30
@@ -246,5 +236,14 @@ private static final String POLLS_LINK_T_N_API_UNTIL_THE_DESIRED_CONDITION = "Po
246
236
.add(javadocs, waiterClassName, waiterClassName)
247
237
.build();
248
238
}
249
-
239
+
240
+
private static final String POLLS_LINK_T_N_API_UNTIL_THE_DESIRED_CONDITION = "Polls {@link $T#$N} API until the desired condition ";
241
+
242
+
private static final String CODE_N_IS_MET = "{@code $N} is met, ";
243
+
244
+
private static final String OR_UNTIL_IT_IS_DETERMINED_THAT_THE_RESOURCE_WILL_NEVER = "or until it is determined that the resource will never ";
245
+
246
+
private static final String FOR_POLLING = " for polling";
247
+
248
+
private static final String A_REFERENCE_TO_THIS_OBJECT_SO_THAT_METHOD_CALLS_CAN_BE_CHAINED_TOGETHER = "a reference to this object so that method calls can be chained together.";
0 commit comments