no trailing whitespace
[gitmo/MooseX-Types.git] / t / lib / SubExporterCompatibility.pm
index 1db281c..9cfcd44 100644 (file)
@@ -1,14 +1,14 @@
 package SubExporterCompatibility; {
-    
+
     use MooseX::Types::Moose qw(Str);
     use MooseX::Types -declare => [qw(MyStr)];
     use Sub::Exporter -setup => { exports => [ qw(something MyStr) ] };
-    
+
     subtype MyStr,
      as Str;
-     
+
     sub something {
         return 1;
-    }    
-    
+    }
+
 } 1;