This is a migrated thread and some comments may be shown as answers.

Fix Usings Oddity

2 Answers 36 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Stuart Hemming
Top achievements
Rank 2
Stuart Hemming asked on 25 Aug 2010, 09:04 AM
I have just created a class in a project and pasted in some code from another file.

At this point, the usings block looked like this ...
using System;
using System.Collections.Generic;
using System.Linq;    // marked as not used
using System.Web;     // marked as not used
using System.Web.UI;
using System.Web.UI.WebControls; // marked as not used

I've marked the assemblies that JC wanted to remove.

After selecting "Fix Usings" my usings block read like this ...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Query.Dynamic;  // marked as not used
using System.Web.UI;
using Telerik.Web;
using Telerik.Web.UI;

JC had just added System.Web.Query.Dynamic and immediately decided it wasn't needed! Selecting "Fix Usings" a 2nd time removed it.

A little odd, dontcha think?

-- 
Stuart

2 Answers, 1 is accepted

Sort by
0
Accepted
Svetlozar
Telerik team
answered on 30 Aug 2010, 12:50 PM
Hello Stuart,

Thank you for pointing this out. You are not the first to report this issue and we have already logged it in our system. It is scheduled for Q3. 

Sorry for the inconvenience.

Regards,
Svetlozar Angelov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Stuart Hemming
Top achievements
Rank 2
answered on 30 Aug 2010, 09:22 PM
Svetlozar,

Thanks for the update.

-- 
Stuart
Tags
General Discussions
Asked by
Stuart Hemming
Top achievements
Rank 2
Answers by
Svetlozar
Telerik team
Stuart Hemming
Top achievements
Rank 2
Share this question
or