Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions andmore-core/features/feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
<import feature="org.eclipse.jdt" version="3.6.0" match="greaterOrEqual"/>
<import feature="org.eclipse.mat.feature" version="1.0.0" match="greaterOrEqual"/>
<import feature="org.eclipse.mat.chart.feature" version="1.0.0" match="greaterOrEqual"/>
<import feature="org.eclipse.sequoyah.device.feature" version="2.0.0" match="greaterOrEqual"/>
<import feature="org.eclipse.sequoyah.localization.tools.feature" version="2.1.0" match="greaterOrEqual"/>
<import feature="org.eclipse.sequoyah.localization.android.feature" version="2.0.0" match="greaterOrEqual"/>
<import feature="org.eclipse.sequoyah.device.feature" version="0.0.0"/>
<import feature="org.eclipse.sequoyah.localization.tools.feature" version="0.0.0"/>
<import feature="org.eclipse.sequoyah.localization.android.feature" version="0.0.0"/>
<import feature="org.eclipse.wst.common.fproj" version="3.2.0" match="greaterOrEqual"/>
<import feature="org.eclipse.wst.jsdt.feature" version="1.2.0" match="greaterOrEqual"/>
<import feature="org.eclipse.wst.server_adapters.feature" version="3.2.0" match="greaterOrEqual"/>
Expand Down
3 changes: 0 additions & 3 deletions andmore-core/plugins/android/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@

<extension
point="org.eclipse.ui.startup">
<startup
class="org.eclipse.andmore.android.AndmoreDeviceChangeListener">
</startup>
<startup
class="org.eclipse.andmore.android.AssociateProguardEditor">
</startup>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
* Class to handle post HPROF dumping things. Based on the existing HprofHandler
* from ADT.
*/
@SuppressWarnings("deprecation") // Now used via recommended HprofData mechanism
public class AndmoreHProfDumpHandler extends BaseFileHandler implements IHprofDumpHandler {
public final static String SAVE_ACTION = "hprof.save"; //$NON-NLS-1$

Expand Down Expand Up @@ -106,9 +107,6 @@ public void run() {
.getClientData().getClientDescription(), message != null ? message + "\n\n" : ""); //$NON-NLS-1$ //$NON-NLS-2$
}
});
synchronized (DDMSFacade.class) {
DDMSFacade.class.notify();
}
}

@Override
Expand All @@ -119,9 +117,6 @@ public void run() {
extractRemoteHprof(remoteFilePath, client);
}
});
synchronized (DDMSFacade.class) {
DDMSFacade.class.notify();
}
}

private void extractRemoteHprof(final String remoteFilePath, final Client client) {
Expand Down Expand Up @@ -190,9 +185,6 @@ public void run() {
extractLocalHprof(data, client, progressMonitor);
}
});
synchronized (DDMSFacade.class) {
DDMSFacade.class.notify();
}
}

private void extractLocalHprof(final byte[] data, final Client client, IProgressMonitor monitor) {
Expand Down
Loading