Skip to content

Commit

Permalink
Fixed TISTUD-5151: do not throw the error while refreshing git index.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Xia committed Sep 4, 2013
1 parent 2b3a743 commit d1183eb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -167,8 +167,8 @@ public String map(IPath location)
}
if (!result.isOK())
{
return new Status(IStatus.ERROR, GitPlugin.getPluginId(),
"Unable to run update-index: " + result.getMessage()); //$NON-NLS-1$
IdeLog.logError(GitPlugin.getDefault(), "Unable to run update-index: " + result.getMessage()); //$NON-NLS-1$
return result;
}

Set<Callable<IStatus>> jobs = new HashSet<Callable<IStatus>>(3);
Expand Down

0 comments on commit d1183eb

Please sign in to comment.