Code re-styling.

This commit is contained in:
2016-07-28 23:08:22 +01:00
parent 2c30b997f3
commit 6129e52d41
34 changed files with 95 additions and 13 deletions

View File

@@ -1,3 +1,10 @@
2016-07-28 Natalia Portillo <claunia@claunia.com>
* Dir.cs:
* File.cs:
* Extent.cs:
* Encoding.cs: Code re-styling.
2016-07-28 Natalia Portillo <claunia@claunia.com>
* ODS.cs:

View File

@@ -59,7 +59,7 @@ namespace DiscImageChef.Filesystems.LisaFS
ReadCatalog(fileId, out catalog);
foreach(CatalogEntry entry in catalog)
contents.Add(GetString(entry.filename).Replace('/',':'));
contents.Add(GetString(entry.filename).Replace('/', ':'));
if(debug && fileId == FILEID_DIRECTORY)
{

View File

@@ -118,7 +118,7 @@ namespace DiscImageChef.Filesystems.LisaFS
{
if(b == 0x00)
break;
uni += LisaRomanTable[b];
}

View File

@@ -166,7 +166,7 @@ namespace DiscImageChef.Filesystems.LisaFS
file.unknown9 = BigEndianBitConverter.ToInt32(sector, 0x84);
extentsOffset = 0x88;
}
for(int j = 0; j < 41; j++)
{
if(BigEndianBitConverter.ToInt16(sector, extentsOffset + j * 6 + 4) == 0)

View File

@@ -192,7 +192,7 @@ namespace DiscImageChef.Filesystems.LisaFS
}
if(systemFileCache.TryGetValue(fileId, out buf) && !tags)
return Errno.NoError;
return Errno.NoError;
int count = 0;
@@ -254,7 +254,7 @@ namespace DiscImageChef.Filesystems.LisaFS
if(!tags)
systemFileCache.Add(fileId, buf);
return Errno.NoError;
}