#26 make almost all operators public

This commit is contained in:
Eliot Jones
2019-01-03 22:20:53 +00:00
parent 29daeb5806
commit 5c8a77bf33
75 changed files with 1196 additions and 304 deletions

View File

@@ -1,12 +1,11 @@
namespace UglyToad.PdfPig.Graphics.Operations.TextState
{
using System.IO;
using Content;
/// <summary>
/// Sets the word spacing.
/// </summary>
internal class SetWordSpacing : IGraphicsStateOperation
public class SetWordSpacing : IGraphicsStateOperation
{
/// <summary>
/// The symbol for this operation in a stream.
@@ -33,7 +32,7 @@
}
/// <inheritdoc />
public void Run(IOperationContext operationContext, IResourceStore resourceStore)
public void Run(IOperationContext operationContext)
{
var currentState = operationContext.GetCurrentState();