File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pkg/commands/git_commands Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5353 if err != nil {
5454 return self .getUnfilteredStashEntries ()
5555 }
56- currentStashEntry = self . stashEntryFromLine (lines [i ], idx )
56+ currentStashEntry = stashEntryFromLine (lines [i ], idx )
5757 for i + 1 < len (lines ) && ! isAStash (lines [i + 1 ]) {
5858 i ++
5959 if lines [i ] == filterPath {
@@ -70,11 +70,11 @@ func (self *StashLoader) getUnfilteredStashEntries() []*models.StashEntry {
7070
7171 rawString , _ := self .cmd .New (cmdArgs ).DontLog ().RunWithOutput ()
7272 return lo .Map (utils .SplitNul (rawString ), func (line string , index int ) * models.StashEntry {
73- return self . stashEntryFromLine (line , index )
73+ return stashEntryFromLine (line , index )
7474 })
7575}
7676
77- func ( c * StashLoader ) stashEntryFromLine (line string , index int ) * models.StashEntry {
77+ func stashEntryFromLine (line string , index int ) * models.StashEntry {
7878 model := & models.StashEntry {
7979 Name : line ,
8080 Index : index ,
You can’t perform that action at this time.
0 commit comments