Skip to content

Commit ebb6634

Browse files
committed
Fix split package between swt.spies and swt.tools
Move Sleak class to o.e.swt.internal.tools.views. It's more correct (or at least less wrong as per https://github.com/eclipse-platform/eclipse.platform/blob/master/docs/Naming_Conventions.md ). Removes the nasty problem of split packages signed with different certificates.
1 parent d9ad053 commit ebb6634

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ui/org.eclipse.swt.tools.spies/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Bundle-Vendor: %providerName
44
Bundle-SymbolicName: org.eclipse.swt.tools.spies;singleton:=true
55
Bundle-Version: 3.109.700.qualifier
66
Bundle-ManifestVersion: 2
7-
Export-Package: org.eclipse.swt.tools.internal,
7+
Export-Package: org.eclipse.swt.internal.tools.views;x-internal:=true,
88
org.eclipse.swt.tools.views
99
Bundle-ActivationPolicy: lazy
1010
Bundle-Localization: plugin

ui/org.eclipse.swt.tools.spies/src/org/eclipse/swt/tools/internal/Sleak.java renamed to ui/org.eclipse.swt.tools.spies/src/org/eclipse/swt/internal/tools/views/Sleak.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2007, 2020 IBM Corporation and others.
2+
* Copyright (c) 2007, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -11,7 +11,7 @@
1111
* Contributors:
1212
* IBM Corporation - initial API and implementation
1313
*******************************************************************************/
14-
package org.eclipse.swt.tools.internal;
14+
package org.eclipse.swt.internal.tools.views;
1515

1616
import java.io.*;
1717
import java.util.*;

ui/org.eclipse.swt.tools.spies/src/org/eclipse/swt/tools/views/SleakView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2004, 2019 IBM Corporation and others.
2+
* Copyright (c) 2004, 2025 IBM Corporation and others.
33
*
44
* This program and the accompanying materials
55
* are made available under the terms of the Eclipse Public License 2.0
@@ -15,7 +15,7 @@
1515
package org.eclipse.swt.tools.views;
1616

1717
import org.eclipse.e4.ui.di.*;
18-
import org.eclipse.swt.tools.internal.*;
18+
import org.eclipse.swt.internal.tools.views.*;
1919
import org.eclipse.swt.widgets.*;
2020

2121
import jakarta.annotation.*;

0 commit comments

Comments
 (0)