
|
If you were logged in you would be able to see more operations.
|
|
|
ReSharper
Created: 23 Aug 06 15:45
Updated: 24 Oct 06 18:12
|
|
| Component/s: |
None
|
| Fix Version/s: |
2.0.2
|
|
Security Level:
|
Everybody
(All jira users)
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
| Build: |
258
|
| Fixed in build: |
260
|
using System;
class Generic<T> : ICloneable
{
public object Clone()
{
return this.MemberwiseClone();
}
}
Make method Clone static
Build258, VS2005
JetBrains.ReSharper.Util.InternalErrorException: The 'T' start tag on line 1 does not match the end tag of 'text'. Line 1, position 132.
An exception has occurred ---> System.Xml.XmlException: The 'T' start tag on line 1 does not match the end tag of 'text'. Line 1, position 132.
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
at System.Xml.XmlTextReaderImpl.ThrowTagMismatch(NodeData startTag)
at System.Xml.XmlTextReaderImpl.ParseEndElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.LoadXml(String xml)
at JetBrains.ReSharper.CommonControls.ActiveRichText.XMLFormatter.FormatXML(String xml) in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\XMLFormatter.cs:line 33
at JetBrains.ReSharper.Refactorings.Workflow.ConflictsTreeList.ConflictFormattedTextProvider.get_FormattedText() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\ConflictsTreeList.cs:line 140
at JetBrains.ReSharper.CommonControls.ActiveRichText.ActiveTextViewInfo.UpdateEditValue() in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\ActiveTextViewInfo.cs:line 71
at JetBrains.ReSharper.CommonControls.ActiveRichText.ActiveTextViewInfo.OnEditValueChanged() in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\ActiveTextViewInfo.cs:line 57
at DevExpress.XtraEditors.ViewInfo.BaseEditViewInfo.set_EditValue(Object value)
at DevExpress.XtraTreeList.ViewInfo.CellInfo..ctor(TreeListColumn column, TreeListNode node)
at DevExpress.XtraTreeList.TreeList.InternalCalcNodeHeight(TreeListNode node, Int32 nodeHeight, ArrayList ColumnWidthes, Boolean useCache, ArrayList& cells, Boolean even)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcNodeHeight(RowInfo ri, ArrayList& viewInfoList)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowGroupInfo(TreeListNodes nodes, CalcRowGroupInfoArgs rowArgs)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.BriefCalcRowsInfo()
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowsInfo()
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcViewInfo()
at DevExpress.XtraTreeList.TreeList.UpdateLayout()
at DevExpress.XtraTreeList.TreeList.LayoutChanged()
at DevExpress.XtraTreeList.TreeList.OnLoadedCore()
at DevExpress.XtraTreeList.TreeList.OnLoaded()
at DevExpress.XtraEditors.Container.EditorContainer.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.ControlCollection.Add(Control value)
at JetBrains.ReSharper.Refactorings.Workflow.RefactoringWizardForm.set_Content(ICustomPage value) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\RefactoringWizardForm.cs:line 123
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.ShowNextPage() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 158
— End of inner exception stack trace —
at JetBrains.ReSharper.Util.Logger.LogExceptionEx(Exception, String, Boolean) in c:\Agent\work\ReSharper2.0\src\Util\src\Logger.cs:line 327 column 9
at JetBrains.ReSharper.Util.Logger.LogException(Exception) in c:\Agent\work\ReSharper2.0\src\Util\src\Logger.cs:line 339 column 5
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.ShowNextPage() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 178 column 9
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.MyForm_OnContinueClicked(Object, EventArgs) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 93 column 5
at JetBrains.ReSharper.Refactorings.Workflow.RefactoringWizardForm.myContinueButton_Click(Object, EventArgs) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\RefactoringWizardForm.cs:line 470 column 5
at System.Windows.Forms.Control.OnClick(EventArgs)
at System.Windows.Forms.Button.OnClick(EventArgs)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs)
at System.Windows.Forms.Control.WmMouseUp(Message&, MouseButtons, Int32)
at System.Windows.Forms.Control.WndProc(Message&)
at System.Windows.Forms.ButtonBase.WndProc(Message&)
at System.Windows.Forms.Button.WndProc(Message&)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message&)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr, Int32, IntPtr, IntPtr)
|
|
Description
|
using System;
class Generic<T> : ICloneable
{
public object Clone()
{
return this.MemberwiseClone();
}
}
Make method Clone static
Build258, VS2005
JetBrains.ReSharper.Util.InternalErrorException: The 'T' start tag on line 1 does not match the end tag of 'text'. Line 1, position 132.
An exception has occurred ---> System.Xml.XmlException: The 'T' start tag on line 1 does not match the end tag of 'text'. Line 1, position 132.
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
at System.Xml.XmlTextReaderImpl.ThrowTagMismatch(NodeData startTag)
at System.Xml.XmlTextReaderImpl.ParseEndElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.LoadXml(String xml)
at JetBrains.ReSharper.CommonControls.ActiveRichText.XMLFormatter.FormatXML(String xml) in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\XMLFormatter.cs:line 33
at JetBrains.ReSharper.Refactorings.Workflow.ConflictsTreeList.ConflictFormattedTextProvider.get_FormattedText() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\ConflictsTreeList.cs:line 140
at JetBrains.ReSharper.CommonControls.ActiveRichText.ActiveTextViewInfo.UpdateEditValue() in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\ActiveTextViewInfo.cs:line 71
at JetBrains.ReSharper.CommonControls.ActiveRichText.ActiveTextViewInfo.OnEditValueChanged() in c:\Agent\work\ReSharper2.0\src\CommonControls\src\ActiveRichText\ActiveTextViewInfo.cs:line 57
at DevExpress.XtraEditors.ViewInfo.BaseEditViewInfo.set_EditValue(Object value)
at DevExpress.XtraTreeList.ViewInfo.CellInfo..ctor(TreeListColumn column, TreeListNode node)
at DevExpress.XtraTreeList.TreeList.InternalCalcNodeHeight(TreeListNode node, Int32 nodeHeight, ArrayList ColumnWidthes, Boolean useCache, ArrayList& cells, Boolean even)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcNodeHeight(RowInfo ri, ArrayList& viewInfoList)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowGroupInfo(TreeListNodes nodes, CalcRowGroupInfoArgs rowArgs)
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.BriefCalcRowsInfo()
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowsInfo()
at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcViewInfo()
at DevExpress.XtraTreeList.TreeList.UpdateLayout()
at DevExpress.XtraTreeList.TreeList.LayoutChanged()
at DevExpress.XtraTreeList.TreeList.OnLoadedCore()
at DevExpress.XtraTreeList.TreeList.OnLoaded()
at DevExpress.XtraEditors.Container.EditorContainer.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.ControlCollection.Add(Control value)
at JetBrains.ReSharper.Refactorings.Workflow.RefactoringWizardForm.set_Content(ICustomPage value) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\RefactoringWizardForm.cs:line 123
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.ShowNextPage() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 158
— End of inner exception stack trace —
at JetBrains.ReSharper.Util.Logger.LogExceptionEx(Exception, String, Boolean) in c:\Agent\work\ReSharper2.0\src\Util\src\Logger.cs:line 327 column 9
at JetBrains.ReSharper.Util.Logger.LogException(Exception) in c:\Agent\work\ReSharper2.0\src\Util\src\Logger.cs:line 339 column 5
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.ShowNextPage() in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 178 column 9
at JetBrains.ReSharper.Refactorings.Workflow.WorkflowProcessor.MyForm_OnContinueClicked(Object, EventArgs) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\WorkflowProcessor.cs:line 93 column 5
at JetBrains.ReSharper.Refactorings.Workflow.RefactoringWizardForm.myContinueButton_Click(Object, EventArgs) in c:\Agent\work\ReSharper2.0\src\Refactorings\src\Workflow\RefactoringWizardForm.cs:line 470 column 5
at System.Windows.Forms.Control.OnClick(EventArgs)
at System.Windows.Forms.Button.OnClick(EventArgs)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs)
at System.Windows.Forms.Control.WmMouseUp(Message&, MouseButtons, Int32)
at System.Windows.Forms.Control.WndProc(Message&)
at System.Windows.Forms.ButtonBase.WndProc(Message&)
at System.Windows.Forms.Button.WndProc(Message&)
at System.Windows.Forms.ControlNativeWindow.OnMessage(Message&)
at System.Windows.Forms.ControlNativeWindow.WndProc(Message&)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr, Int32, IntPtr, IntPtr)
|
Show » |
|