This commit is contained in:
René Pfeuffer
2020-08-27 10:48:54 +02:00
parent 7d33744e73
commit 565ec3ff3c
4 changed files with 21 additions and 27 deletions

View File

@@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package sonia.scm.repository.client.spi;
//~--- non-JDK imports --------------------------------------------------------
@@ -89,7 +89,7 @@ public class GitTagCommand implements TagCommand
{
walk = new RevWalk(git.getRepository());
revObject = walk.parseAny(id);
tagTime = GitUtil.getTagTime(git.getRepository(), walk, id);
tagTime = GitUtil.getTagTime(walk, id);
}
finally
{