115 reputation
6
bio website
location
age
visits member for 10 months
seen Jun 10 at 15:59
stats profile views 16

Mar
13
accepted Cyclomatic Complexity in piece of code with multiple exit points
Mar
13
comment Cyclomatic Complexity in piece of code with multiple exit points
@matts: thanks! That's it! How silly I was!
Mar
13
comment Cyclomatic Complexity in piece of code with multiple exit points
@Claudiu: I thought it could be that but I wasn't sure... my doubt is: why should the for count twice, where if's and everything else counts just for once? Even if statement has two way but increment ccn only by one and so should do the for as well. :|
Mar
13
comment Cyclomatic Complexity in piece of code with multiple exit points
I edited my answer, can you please give a look? :) Maybe you can help me :)
Mar
13
revised Cyclomatic Complexity in piece of code with multiple exit points
added 489 characters in body
Mar
13
comment Cyclomatic Complexity in piece of code with multiple exit points
"I wouldn't say it has multiple exit points" what do you mean by that? I used to thing that everytime you return you add an exit point (e.g. if (somecondition) return;)
Mar
13
comment Cyclomatic Complexity in piece of code with multiple exit points
I guess your right, but I wonder... is this correct? So what's the real cyclomatic number of that piece of code? Is Metrics right? The point of all of this is the cover all possible paths for testing. EDIT: thinking it twice, I found out that metrics is right; I did not considered two test cases: all-numeric password and a password without any digit. Btw I think that the last && does not increment ccn: you didn't count the main flow :)
Mar
13
revised Cyclomatic Complexity in piece of code with multiple exit points
deleted 2 characters in body
Mar
13
awarded  Cleanup
Mar
13
revised Cyclomatic Complexity in piece of code with multiple exit points
rolled back to a previous revision
Mar
13
revised Cyclomatic Complexity in piece of code with multiple exit points
deleted 2 characters in body
Mar
13
asked Cyclomatic Complexity in piece of code with multiple exit points
Feb
18
accepted Android UI Thread freezes waiting for socket in a simple client/server architecture
Feb
18
comment Android UI Thread freezes waiting for socket in a simple client/server architecture
Might as well inglobe my own exceptions in Result class and delegate Result#getStatus() for throwing, just like in your example. I found a way to go and I think I'll stick with this one. Thanks for your help and for your detailed reply :)
Feb
18
comment Android UI Thread freezes waiting for socket in a simple client/server architecture
Another thing: I cannot throw any exception from doInBackground(), but something may go wrong when I call longRunningTask.execute() and this would cause a RTE in AsyncThread caused by something that I can actually recover (or at least catch and inform the user). I don't think that catching RuntimeException and investigate using getCause() would be good design :| EDIT: btw I just tried catching RTE, but I cannot (probably because the exception is thrown in another thread).
Feb
18
comment Android UI Thread freezes waiting for socket in a simple client/server architecture
Thanks Rajnikant, these are the answers I like to read! You have been very clear and helpful. Just one thing: how Result#getStatus() is supposed to throw exceptions? Please consider also that CommunicationException is checked.
Feb
17
asked Android UI Thread freezes waiting for socket in a simple client/server architecture
Jan
21
comment jQuery function with parameter
This works too :) thanks
Jan
21
accepted jQuery function with parameter
Jan
21
comment jQuery function with parameter
Omg this was so trivial that I didn't thought about it! Thank you very much ;)