Skip to content

Commit

Permalink
Reducing visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
garcia-jj committed Jun 16, 2014
1 parent 9b7e1f6 commit 454a271
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vraptor-site/content/en/docs/migrating-vraptor3-project.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
private final MyComponent myComponent;

/** @deprecated CDI eyes only */
public MyComponent() {
protected MyComponent() {
this(null);
}

Expand All @@ -46,7 +46,7 @@
@ApplicationScoped
public class PrintLog {

@Inject private Logger logger;
@Inject private Logger logger;

public void whenApplicationStarts(@Observes VRaptorInitialized initialized) {
logger.info("My application is UP");
Expand Down Expand Up @@ -114,8 +114,8 @@
#!java
public class MyClass {

@Inject private Locale locale;
@Inject private ResourceBundle bundle;
@Inject private Locale locale;
@Inject private ResourceBundle bundle;
}
~~~

Expand Down

0 comments on commit 454a271

Please sign in to comment.