Skip to content

Commit

Permalink
feat: Remove not needed comment after review
Browse files Browse the repository at this point in the history
Signed-off-by: Valentinas <31697821+valentk777@users.noreply.github.com>
  • Loading branch information
valentk777 committed Feb 10, 2023
1 parent 86a7fda commit 7a4c306
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/OpenFeature/Error/FeatureProviderException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
namespace OpenFeature.Error
{
/// <summary>
/// Used to represent an abnormal error when evaluating a flag. This exception should be thrown
/// when evaluating a flag inside a IFeatureFlag provider
/// Used to represent an abnormal error when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class FeatureProviderException : Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/FlagNotFoundException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Provider was unable to find the flag error when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class FlagNotFoundException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/GeneralException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Abnormal execution of the provider when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class GeneralException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/InvalidContextException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Context does not satisfy provider requirements when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class InvalidContextException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/ParseErrorException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Provider failed to parse the flag response when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class ParseErrorException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/ProviderNotReadyException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Provider has yet been initialized when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class ProviderNotReadyException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/TargetingKeyMissingException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Context does not contain a targeting key and the provider requires one when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class TargetingKeyMissingException : FeatureProviderException
{
Expand Down
1 change: 0 additions & 1 deletion src/OpenFeature/Error/TypeMismatchException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ namespace OpenFeature.Error
{
/// <summary>
/// Request type does not match the expected type when evaluating a flag.
/// This exception should be thrown when evaluating a flag inside a IFeatureFlag provider
/// </summary>
public class TypeMismatchException : FeatureProviderException
{
Expand Down

0 comments on commit 7a4c306

Please sign in to comment.