Mohsen Vakilian
Mohsen Vakilian
@vazexqi said that we didn't capture this refactoring invoked using Quick Assist either.
I don't know where the dependency on 64-bit Eclipse comes from. It might be a dependency of JDT that CodingSpectator has inherited. Again, I don't know why JDT might have...
That makes sense. We should be able to lower the dependency to Java 1.5.
Nick and I discussed this issue. We think that excluding some projects from monitoring is problematic because our data will no longer be comparable to the data collected from other...
@Wanderer777, @vazexqi: Our recruitment experience have shown us that a lot of open source developers work on open source and closed source projects at the same time. And, apparently, splitting...
@Wanderer777, @vazexqi: Sorry for not describing what I meant by filtering well. By filtering, I meant filtering the projects and not the detailed data. That is, CodingSpectator would present a...
I changed `org.eclipse.mylyn.internal.monitor.ui.ActivityContextManager.updateWorkingSetSelection()` to the following. ``` protected void updateWorkingSetSelection() { PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() { public void run() { IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); if (window != null) { IWorkbenchPage page =...
I came across the same failing tests today. But, I couldn't find the source code of `org.eclipse.mylyn.monitor.ui` plug-in to apply our patch to. I couldn't even find the bytecode of...
I encountered the following exception when I deleted a few lines of code after an extract constant refactoring. java.lang.IllegalStateException at org.eclipse.jface.text.projection.ProjectionTextStore.internalError(ProjectionTextStore.java:85) at org.eclipse.jface.text.projection.ProjectionTextStore.get(ProjectionTextStore.java:152) at org.eclipse.jface.text.AbstractDocument.get(AbstractDocument.java:1039) at org.eclipse.jface.text.DefaultDocumentAdapter.doGetLine(DefaultDocumentAdapter.java:150) at org.eclipse.jface.text.DefaultDocumentAdapter.getLine(DefaultDocumentAdapter.java:173) at...
I got the following exception when I opened two editors for a Java file and performed various edits in one of them including an extract local variable refactoring via quick...