From 6eb7a4f098cce9b2cc9415472c1feb4443fdbd06 Mon Sep 17 00:00:00 2001 From: tombogle Date: Fri, 19 Jul 2024 12:22:12 -0400 Subject: [PATCH] Added comment to IModifiedPhrase --- TxlData/IModifiedPhrase.cs | 9 +++++++-- TxlData/IPhraseTranslationHelper.cs | 1 - 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/TxlData/IModifiedPhrase.cs b/TxlData/IModifiedPhrase.cs index 9ee1178..0fd1bb7 100644 --- a/TxlData/IModifiedPhrase.cs +++ b/TxlData/IModifiedPhrase.cs @@ -6,11 +6,16 @@ // Distributable under the terms of the MIT License (http://sil.mit-license.org/) // #endregion -// -// File: IModifiedPhrase.cs.cs // --------------------------------------------------------------------------------------------- namespace SIL.Transcelerator { + /// + /// Represents a phrase/question that the user modified (even if that modification was + /// later superseded by a subsequent program change that added the modified version). + /// + /// Technically, we wouldn't need this interface since the only class that + /// implements it is in this same assembly, but it wouldn't have to be implemented like + /// that, and using this interface clarifies the properties we actually care about. public interface IModifiedPhrase { string Reference { get; } diff --git a/TxlData/IPhraseTranslationHelper.cs b/TxlData/IPhraseTranslationHelper.cs index 7ff2f95..e19a690 100644 --- a/TxlData/IPhraseTranslationHelper.cs +++ b/TxlData/IPhraseTranslationHelper.cs @@ -9,7 +9,6 @@ // // File: IPhraseTranslationHelper.cs // --------------------------------------------------------------------------------------------- -using SIL.Transcelerator.Localization; using System.Collections.Generic; using System.Globalization;