mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Use string interpolation expression.
This commit is contained in:
@@ -220,7 +220,7 @@ namespace DiscImageChef.DiscImages
|
||||
if(!track.ContainsKey(idmap[i])) track.Add(idmap[i], data);
|
||||
break;
|
||||
default:
|
||||
throw new ImageNotSupportedException(string.Format("Invalid sector type {0}", (byte)type));
|
||||
throw new ImageNotSupportedException($"Invalid sector type {(byte)type}");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user