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 - Retired Getting There Class Review

Aaron Wedd
Aaron Wedd
1,658 Points

Hi, ive added the private fields but still says to add them

Same as above

com/example/BlogPost.java
package com.example;
import java.util.Date;

public class BlogPost {
private String mauthor;
private String mbody;
private String mcategory;
private Date mcreationDate;
}

1 Answer

Daniel Szepanski
PLUS
Daniel Szepanski
Courses Plus Student 5,098 Points

Hi,

you have to write your variable with camel case. So you have to name them like:

private String mAuthor; private String mBody; private String mCategory; private Date mCreationDate;

this should work.