Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ type Device struct {
model string

// Partitioning Information
// TODO (b/151981913) This remains a string for now to retain compatibility
// with main. It will eventually be moved to type 'partition'.
partStyle glstor.PartitionStyle
partitions []Partition
}
Expand Down
1 change: 0 additions & 1 deletion storage/storage_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@ func (part *Partition) Mount(base string) error {
return nil
}
// Skip partitions that cannot be mounted.
// TODO(b/130833261) Revisit not throwing an error here during OSS.
if part.fileSystem == UnknownFS {
return nil
}
Expand Down
1 change: 0 additions & 1 deletion storage/storage_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,6 @@ func (part *Partition) Mount(letter string) error {
if part.fileSystem == UnknownFS {
return nil
}
// TODO(b/130833261) We need to check for Admin here and skip if we are not.

// Assign partitions to everything else.
available, err := freeDrive(letter)
Expand Down