Skip to content

Commit

Permalink
don't expose internal details
Browse files Browse the repository at this point in the history
  • Loading branch information
soygul committed Nov 6, 2015
1 parent 3263353 commit e81fd38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion NBug/Core/Util/Storage/AdditionalFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static implicit operator AdditionalFile(String o)
/// Add all additional files represented by this instance to the zip file using the zipStorer
/// </summary>
/// <param name="zipStorer"></param>
public void AddToZip(ZipStorer zipStorer)
internal void AddToZip(ZipStorer zipStorer)
{
// Join before spliting because the mask may have some folders inside it
var fullPath = Path.Combine(Settings.NBugDirectory, FilePath);
Expand Down
10 changes: 5 additions & 5 deletions NBug/Core/Util/Storage/ZipStorer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace NBug.Core.Util.Storage
/// <summary>
/// Unique class for compression/decompression file. Represents a Zip file.
/// </summary>
public class ZipStorer : IDisposable
internal class ZipStorer : IDisposable
{
#region Constants and Fields

Expand Down Expand Up @@ -628,13 +628,13 @@ public void Dispose()

/* DOS Date and time:
MS-DOS date. The date is a packed value with the following format. Bits Description
0-4 Day of the month (1–31)
0-4 Day of the month (131)
5-8 Month (1 = January, 2 = February, and so on)
9-15 Year offset from 1980 (add 1980 to get actual year)
MS-DOS time. The time is a packed value with the following format. Bits Description
0-4 Second divided by 2
5-10 Minute (0–59)
11-15 Hour (0–23 on a 24-hour clock)
5-10 Minute (059)
11-15 Hour (023 on a 24-hour clock)
*/

#region Methods
Expand Down Expand Up @@ -1069,4 +1069,4 @@ public override string ToString()
#endregion Public Methods
}
}
}
}

0 comments on commit e81fd38

Please sign in to comment.