File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments