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

Java Java Annotations Using Java's Built-In Annotations The @SuppressWarnings Annotation - Suppressing Multiple Warnings

Chance Edward
Chance Edward
4,507 Points

Java Annotations (I need help on this question)

In the console.txt file, you see some sample output as a result of compiling the Stuff class. After looking at the compiler output, add the correct @SuppressWarnings annotation that suppresses the warnings listed. Keep in mind that these warnings are fictitious, and that there is intentionally no code in the doThings method. The only thing you need to add is the correct annotation.

Stuff.java
public class Stuff {
  public void doThings() {
    // Nothing to see here

    // Or here


    // Or here


    // Or here

  }    
}
console.txt
Stuff.java:6 warning: [spellingerror] A spelling error was found. Wherever possible,
  use correct spelling.
Stuff.java:9 warning: [asleeponkeyboard] You have a sequence of characters suggesting 
  that you fell asleep on your keyboard.
Stuff.java:12 warning: [wet] Duplicate code above this line suggests that you may be 
  violating the DRY principle. Remember: Do not Repeat Yourself.

1 Answer

Steven Parker
Steven Parker
229,783 Points

If you completed the previous challenge, you should at least be able to add the annotation to the code.

Then you might want to review the last video lesson, where an example was shown of how to use the suppresswarnings annotation with multiple warning types.