Tagged Questions

6
votes
5answers
290 views

When KISS and DRY collide

I'm an obsessive follower of the DRY and KISS principles but last week I had a case where both seem to contradict each other: For an application I was doing, I had to implement a loop for times which ...
1
vote
6answers
140 views

Can I avoid repeating myself in this situation (Java)

if (openFile == null) { new AppFileDialog().chooseFile("Save", appFrame); } if (openFile == null) { return; } Here I need to check to see if the user has already chosen a file. ...