`{{` was tripping up Github

master
Bradlee Speice 2014-08-02 22:16:48 -04:00
parent f0b4841efd
commit 9138dc2e18
1 changed files with 7 additions and 7 deletions

View File

@ -61,10 +61,10 @@ Both modules provide a singleton list that is used as configuration. It will not
class MainConfig {
@Provides @Singleton
List<BookCategory> provideValidCategories() {
return new ArrayList<BookCategory>() {{
put(Category1);
put(Category2);
}};
List<BookCategory> categoryList = new ArrayList<BookCategory>();
categoryList.put(Category1);
categoryList.put(Category2);
return categoryList;
}
}
{% endhighlight %}
@ -75,9 +75,9 @@ class MainConfig {
class TestConfig {
@Provides @Singleton
List<BookCategory> provideValidCategories() {
return new ArrayList<BookCategory>() {{
put(mockCategory1);
}};
List<BookCategory> categoryList = new ArrayList<BookCategory>();
categoryList.put(mockCategory1);
return categoryList;
}
}
{% endhighlight %}