Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blewitt2020-10-20 19:23:31 +0000
committerAlex Blewitt2020-10-23 11:42:50 +0000
commit93c91c2fb056b7b18f3ca345f5c2a2a42f40820e (patch)
tree713dd548294e55b63644778ff592f3d4102f76b0 /examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
parentae4c26214bc56885e11f09386052a2373a7378c5 (diff)
downloadorg.eclipse.ecf-93c91c2fb056b7b18f3ca345f5c2a2a42f40820e.tar.gz
org.eclipse.ecf-93c91c2fb056b7b18f3ca345f5c2a2a42f40820e.tar.xz
org.eclipse.ecf-93c91c2fb056b7b18f3ca345f5c2a2a42f40820e.zip
Remove uses of new Integer()
Instead of using `new Integer()` to construct Integer instances, use `Integer.valueOf()` which uses a cache to prevent re-instantiation of Integer instances where necessary. Bug: 568048 Change-Id: Ic5cbba63c04efb6410af186ead039b4051f04c83 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
index c0a1530d3..59285e173 100644
--- a/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
+++ b/examples/bundles/org.eclipse.ecf.example.clients/META-INF/MANIFEST.MF
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.example.clients;singleton:=true
Automatic-Module-Name: org.eclipse.ecf.example.clients
-Bundle-Version: 2.0.200.qualifier
+Bundle-Version: 2.0.201.qualifier
Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Export-Package: org.eclipse.ecf.example.clients;version="2.0.0",

Back to the top