Reporter | Denis Abramov (sparky2708) |
---|---|
Created | Apr 20, 2012 6:21:14 PM |
Updated | Apr 20, 2012 9:44:51 PM |
Priority | Normal |
Type | Unspecified |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
Am getting: "Value is not used in any execution path"
<DefaultValue(GetType(BaseTextFormatter)), Description("Set the custom text formatter")> Public Property CustomTextFormatter As ITextFormatter Get If itsCustomTextFormatter Is Nothing Then CustomTextFormatter = New BaseTextFormatter() '<--- ERROR IS SEEN ON THIS LINE End If Return itsCustomTextFormatter End Get Set(ByVal value As ITextFormatter) If value Is Nothing Then value = New BaseTextFormatter() End If itsCustomTextFormatter = value End Set End Property