show/hide this revision's text 3 added 192 characters in body

Hi,

for me, it depends on the context and the surrounding code.

[EDIT: does not make any sense, sorry] if it was in method like "setSomeObjectProperties()", I'd prefer variant 2 but perhaps would create a private method "getProperty(String name)" which removes the trailing spaces if removing the spaces is not an important operation [/EDIT]

If validation the properties is an important step of your method, then I'd call the method "setValidatedProperties()" and would prefer a variant of your first suggestion:

validatedProp1 = doValidation(someObject.getSomeProperties1())doValidation(someObject.getSomeProperty1());
validatedProp2 = doValidation(someObject.getSomeProperties2())doValidation(someObject.getSomeProperty2());
someObject.setSomeProperties(validatedProp1, validatedProp2);

If validation is not something important of this method (e.g. there's no point in returning properties which are not validated), I'd try to put the validation-step in "getSomePropertyX()"

show/hide this revision's text 2 added 47 characters in body

Hi,

for me, it depends on the context and the surrounding code.

[EDIT: does not make any sense, sorry] if it was in method like "setSomeObjectProperties()", I'd prefer variant 2 but perhaps would create a private method "getProperty(String name)" which removes the trailing spaces if removing the spaces is not an important operation [/EDIT]

If removing validation the spaces properties is and an important step of your method, then I'd call the method "setSomeObjectPropertiesWithoutTrailingSpaces()" setValidatedProperties()" and would prefer a variant of your first suggestion:

prop1WOSpaces 

validatedProp1 = removeTrailingSpaces(someObject.getSomeProperties1())doValidation(someObject.getSomeProperties1());
prop2WOSpaces validatedProp2 = removeTrailingSpaces(someObject.getSomeProperties2())doValidation(someObject.getSomeProperties2());
someObject.setSomeProperties(prop1WOSpacessomeObject.setSomeProperties(validatedProp1, prop2WOSpaces)validatedProp2);
show/hide this revision's text 1

Hi,

for me, it depends on the context and the surrounding code.

if it was in method like "setSomeObjectProperties()", I'd prefer variant 2 but perhaps would create a private method "getProperty(String name)" which removes the trailing spaces if removing the spaces is not an important operation

If removing the spaces is and important step of your method, then I'd call the method "setSomeObjectPropertiesWithoutTrailingSpaces()" and would prefer a variant of your first suggestion:

prop1WOSpaces = removeTrailingSpaces(someObject.getSomeProperties1());
prop2WOSpaces = removeTrailingSpaces(someObject.getSomeProperties2());
someObject.setSomeProperties(prop1WOSpaces, prop2WOSpaces);