From 1dee75f9be7a641f94fc9725cd77ffa41e46c2de Mon Sep 17 00:00:00 2001 From: Guille Polito Date: Thu, 2 Aug 2018 14:32:07 +0200 Subject: [PATCH] Access the handle with the right accessor --- .../IceLibgitRepository.class/instance/revparse..st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Iceberg-Libgit.package/IceLibgitRepository.class/instance/revparse..st b/Iceberg-Libgit.package/IceLibgitRepository.class/instance/revparse..st index 0a69a7dc3a..a0bbe88848 100644 --- a/Iceberg-Libgit.package/IceLibgitRepository.class/instance/revparse..st +++ b/Iceberg-Libgit.package/IceLibgitRepository.class/instance/revparse..st @@ -2,6 +2,6 @@ API-commits revparse: aName self handleLibgitError: [ | gitCommit gitId | - gitId := (handle revparse: aName) object id. - gitCommit := LGitCommit of: handle fromId: gitId. + gitId := (self repositoryHandle revparse: aName) object id. + gitCommit := LGitCommit of: self repositoryHandle fromId: gitId. ^ self commitFromGitCommit: gitCommit ] \ No newline at end of file