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 Data Structures Getting There Packages

HAIDER AL RUSTEM
HAIDER AL RUSTEM
859 Points

package task

the task asks me to to put BlogPost.java in a package for a company with the domain name : example.com. So i wrote : package com.example ;
but it still tells me that i should do it again and wont let me pass. there is no compiler error.

com/example/BlogPost.java
package com.example ;

public class BlogPost {
}
Display.java
public class Display {
  public static void main(String[] args) {
    // Your code here...

  }
}

3 Answers

Diego Marrs
Diego Marrs
8,243 Points

You added a space after 'com.example':

Old:

package com.example ;

New:

package com.example;
Seth Kroger
Seth Kroger
56,413 Points

It will pass if you remove the space before the semi-colon:

package com.example;
HAIDER AL RUSTEM
HAIDER AL RUSTEM
859 Points

omg ! thank you so much !