Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Self-Destructing Message Android App Capturing Photos and Videos Selecting a Video from the Gallery

Wayne Wong
Wayne Wong
1,567 Points

Don't we need to have the condition for if fileSize is < FILE_SIZE_LIMIT ?

What happens if the fileSize is less than the limit?

1 Answer

Mark Josephsen
Mark Josephsen
8,803 Points

In Java, when writing an 'if' statement, if the conditions are true, the next line of code (or block of code between brackets) will be executed. So, if the variable fileSize is less than the variable FILE_SIZE_LIMIT, it will execute the next line of code. If it's not, it will skip the next line of code.