diff --git a/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs b/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs
index 827a902b89..5492a3effe 100644
--- a/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs
+++ b/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs
@@ -22,20 +22,17 @@ namespace Umbraco.Core.Deploy
/// Gets the value to be deployed from the control value as a string.
///
/// The control containing the value.
- /// The property where the control is located. Do not modify - only used for context
/// The dependencies of the property.
/// The grid cell value to be deployed.
/// Note that
- string GetValue(GridValue.GridControl gridControl, Property property, ICollection dependencies);
+ string ToArtifact(GridValue.GridControl gridControl, ICollection dependencies);
///
/// Allows you to modify the value of a control being deployed.
///
/// The control being deployed.
- /// The property where the is located. Do not modify - only used for context.
/// Follows the pattern of the property value connectors (). The SetValue method is used to modify the value of the .
- /// Note that only the value should be modified - not the .
- /// The should only be used to assist with context data relevant when setting the value.
- void SetValue(GridValue.GridControl gridControl, Property property);
+
+ void FromArtifact(GridValue.GridControl gridControl);
}
}