Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Rebert2015-03-04 10:42:45 +0000
committerChris Rebert2015-03-04 10:42:45 +0000
commit18c3170deeaf8e565f8c2301ce905f7109059b8e (patch)
tree9fb2a7526379c86d585c1874fc78d8be3881ab71 /org.eclipse.egit.github.core/META-INF/MANIFEST.MF
parent7f02b89a2a6bb78942c695317657c081e5b310ce (diff)
downloadegit-github-18c3170deeaf8e565f8c2301ce905f7109059b8e.tar.gz
egit-github-18c3170deeaf8e565f8c2301ce905f7109059b8e.tar.xz
egit-github-18c3170deeaf8e565f8c2301ce905f7109059b8e.zip
Fix syntax error in META-INF/MANIFEST.MF
Closing quotation mark was missing from the com.google.gson.stream line's version value. Change-Id: I4a4c5c574c5bebda9f554a78f5b613720fe59202 Refs: https://github.com/eclipse/egit-github/pull/15 Signed-off-by: Chris Rebert <eclipse@rebertia.com>
Diffstat (limited to 'org.eclipse.egit.github.core/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.egit.github.core/META-INF/MANIFEST.MF2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
index 8d737ab6..882a052f 100644
--- a/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.github.core/META-INF/MANIFEST.MF
@@ -9,7 +9,7 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Import-Package: com.google.gson;version="[1.6.0,2.2.0]",
com.google.gson.annotations;version="[1.6.0,2.2.0]",
com.google.gson.reflect;version="[1.6.0,2.2.0]",
- com.google.gson.stream;version="[1.6.0,2.2.0]
+ com.google.gson.stream;version="[1.6.0,2.2.0]"
Export-Package: org.eclipse.egit.github.core;version="4.0.0",
org.eclipse.egit.github.core.client;version="4.0.0",
org.eclipse.egit.github.core.event;version="4.0.0",

Back to the top