Skip to content

Commit

Permalink
chore: remove debug println's
Browse files Browse the repository at this point in the history
  • Loading branch information
cosrnic authored and mworzala committed Jun 16, 2024
1 parent 555626b commit 502cd86
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions internal/pkg/game/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ func (m *VersionManager) FindVanilla(name string) (*gameModel.VersionInfo, error
return nil, ErrUnknownVersion
}
m.triedToUpdate = true
fmt.Println("Couldn't find version: ", name, ", refreshing manfiest")
m.updateManifest()
return m.FindVanilla(name)
}
Expand All @@ -141,7 +140,6 @@ func (m *VersionManager) FindFabric(name, loader string) (*gameModel.VersionInfo
return nil, ErrUnknownFabricVersion
}
m.triedToUpdate = true
fmt.Println("Couldn't find fabric for version: ", name, ", refreshing manfiest")
m.updateManifest()
return m.FindFabric(name, loader)
}
Expand Down

0 comments on commit 502cd86

Please sign in to comment.