removed unrequired explicit 'list' data levels
[scpubgit/System-Introspector.git] / lib / System / Introspector / Probe / Repositories / Git.pm
index c416c07..610372d 100644 (file)
@@ -92,7 +92,7 @@ sub _find_changes {
     local $ENV{GIT_DIR} = $dir;
     my @lines = lines_from_command
         ['git', 'diff', '--name-only', $local, $remote];
-    return { list => \@lines };
+    return \@lines;
 }
 
 sub _gather_git_config {