Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anyway to refactor this bloated pig?

int studyNum;
int formVer;
int partNum;

// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
    studyNum = Integer.valueOf(getSearchProperties().getStudyIdQualifier());
} catch(NumberFormatException nfe) {
    studyNum = 0;
}

// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
    formVer = Integer.valueOf(getSearchProperties().getFormVersionNumber());
} catch(NumberFormatException nfe) {
    formVer = 0;
}

// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
    partNum = Integer.valueOf(getSearchProperties().getParticipantId());
} catch(NumberFormatException nfe) {
    partNum = 0;
}
share|improve this question
mmm use a method instead ? – Amine Feb 26 at 20:23

closed as too localized by Robert Harvey Feb 26 at 20:23

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.