that wasn't nearly enough usage to add the dependency
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract / Parts.pm
index e4a2033..64fc71d 100644 (file)
@@ -24,8 +24,8 @@ sub to_array { return @{$_[0]} }
 
 sub formatter {
   my ($self, %opts) = @_;
-  Module::Runtime::use_module('SQL::Abstract::Formatter')
-    ->new(%opts)
+  require SQL::Abstract::Formatter;
+  SQL::Abstract::Formatter->new(%opts)
 }
 
 sub format {