Skip to content

Commit 823b772

Browse files
authored
additional formatting changes
1 parent 83508ff commit 823b772

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

fflib/src/classes/fflib_QueryFactory.cls

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -224,17 +224,18 @@ public class fflib_QueryFactory { //No explicit sharing declaration - inherit fr
224224
public fflib_QueryFactory selectField(String fieldName){
225225
fields.add( getFieldPath(fieldName, null) );
226226
return this;
227-
}
228-
/**
229-
* Selects a single field from the SObject specified in {@link #table}.
230-
* Selecting fields is idempotent, if this field is already selected calling this method will have no additional impact.
231-
* @param fieldName the API name of the field to add to the query's SELECT clause.
227+
}
228+
229+
/**
230+
* Selects a single field from the SObject specified in {@link #table}.
231+
* Selecting fields is idempotent, if this field is already selected calling this method will have no additional impact.
232+
* @param fieldName the API name of the field to add to the query's SELECT clause.
232233
* @param relatedSObjectType the related sObjectType to resolve polymorphic object fields.
233-
**/
234-
public fflib_QueryFactory selectField(String fieldName, Schema.sOBjectType relatedObjectType){
235-
fields.add( getFieldPath(fieldName, relatedObjectType) );
236-
return this;
237-
}
234+
**/
235+
public fflib_QueryFactory selectField(String fieldName, Schema.sOBjectType relatedObjectType){
236+
fields.add( getFieldPath(fieldName, relatedObjectType) );
237+
return this;
238+
}
238239

239240
/**
240241
* Selects a field, avoiding the possible ambiguitiy of String API names.

0 commit comments

Comments
 (0)