Skip to content

Commit

Permalink
Change constructor visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
serhuz committed Mar 23, 2017
1 parent 3ba1b08 commit a1cf987
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public abstract class MorphiaPackageBundle<T extends Configuration> extends Base
* @param packageName name of package with {@link org.mongodb.morphia.dao.BasicDAO} entities
* @param ignoreInvalidClasses specifies whether to ignore classes in the package that cannot be mapped
*/
public MorphiaPackageBundle(String packageName, boolean ignoreInvalidClasses) {
protected MorphiaPackageBundle(String packageName, boolean ignoreInvalidClasses) {
this.packageName = packageName;
this.ignoreInvalidClasses = ignoreInvalidClasses;
}
Expand Down

0 comments on commit a1cf987

Please sign in to comment.