Remove public imports

This commit is contained in:
Mike Bierlee 2015-12-24 01:01:30 +01:00
parent f225a2f13c
commit be5eb37617
5 changed files with 7 additions and 6 deletions

View file

@ -17,7 +17,8 @@
module poodinis.autowire; module poodinis.autowire;
public import poodinis.container; import poodinis.container;
import poodinis.registration;
import std.exception; import std.exception;
import std.stdio; import std.stdio;

View file

@ -21,8 +21,8 @@ debug {
import std.stdio; import std.stdio;
} }
public import poodinis.registration; import poodinis.registration;
public import poodinis.autowire; import poodinis.autowire;
/** /**
* Exception thrown when errors occur while resolving a type in a dependency container. * Exception thrown when errors occur while resolving a type in a dependency container.

View file

@ -5,7 +5,7 @@
* The full terms of the license can be found in the LICENSE file. * The full terms of the license can be found in the LICENSE file.
*/ */
import poodinis.autowire; import poodinis;
import std.exception; import std.exception;

View file

@ -5,7 +5,7 @@
* The full terms of the license can be found in the LICENSE file. * The full terms of the license can be found in the LICENSE file.
*/ */
import poodinis.container; import poodinis;
import std.exception; import std.exception;
import core.thread; import core.thread;

View file

@ -5,7 +5,7 @@
* The full terms of the license can be found in the LICENSE file. * The full terms of the license can be found in the LICENSE file.
*/ */
import poodinis.registration; import poodinis;
import std.exception; import std.exception;