Skip to content

Commit

Permalink
Fix #1068
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Nov 5, 2018
1 parent 0528b25 commit c03d2c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
checking
checkMissing

self isMissing ifTrue: [
IceError signal: ('You have no repository atttached to project "{1}"' format: { self name }) ]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
accessing
commitId
^ self entity headCommit id
^ [ self entity headCommit id ] on: Error do: [ nil ].
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
private
retrieveHistory

self repositoryModel checkMissing.
UIManager default
informUser: ('Retrieving history of {1}' format: { self entity printString })
during: [ ^ self repositoryModel entity log historyOfMethod: self entity ]

0 comments on commit c03d2c2

Please sign in to comment.