GioLister: Remove useless else
This commit is contained in:
parent
ec21a55271
commit
a8f1a881ff
|
@ -54,9 +54,8 @@ QString GioLister::DeviceInfo::unique_id() const {
|
||||||
if (mount_ptr) {
|
if (mount_ptr) {
|
||||||
return QStringLiteral("Gio/%1/%2/%3").arg(mount_uuid, filesystem_type).arg(filesystem_size);
|
return QStringLiteral("Gio/%1/%2/%3").arg(mount_uuid, filesystem_type).arg(filesystem_size);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
return QStringLiteral("Gio/unmounted/%1").arg(reinterpret_cast<qulonglong>(volume_ptr.get()));
|
return QStringLiteral("Gio/unmounted/%1").arg(reinterpret_cast<qulonglong>(volume_ptr.get()));
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue