Skip to content

Commit da13586

Browse files
committed
Fix warnings
1 parent e71118e commit da13586

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/KnowledgePicker.WordCloud/WordCloudGenerator.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
using System.Collections.Generic;
77
using System.Linq;
88

9+
[assembly: CLSCompliant(false)]
10+
911
namespace KnowledgePicker.WordCloud
1012
{
1113
/// <summary>
@@ -24,7 +26,7 @@ public class WordCloudGenerator<TBitmap>
2426
private readonly WordCloudInput wordCloud;
2527
private readonly IGraphicEngine<TBitmap> engine;
2628
private readonly ILayout layout;
27-
private readonly IColorizer colorizer;
29+
private readonly IColorizer? colorizer;
2830

2931
public WordCloudGenerator(WordCloudInput wordCloud,
3032
IGraphicEngine<TBitmap> engine, ILayout layout,

0 commit comments

Comments
 (0)