View | Details | Raw Unified | Return to bug 216569
Collapse All | Expand All

(-)META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 3-9 Link Here
3
Bundle-ManifestVersion: 2
3
Bundle-ManifestVersion: 2
4
Bundle-Name: %pluginName
4
Bundle-Name: %pluginName
5
Bundle-SymbolicName: org.eclipse.jdt.core; singleton:=true
5
Bundle-SymbolicName: org.eclipse.jdt.core; singleton:=true
6
Bundle-Version: 3.2.6.qualifier
6
Bundle-Version: 3.2.7.qualifier
7
Bundle-Activator: org.eclipse.jdt.core.JavaCore
7
Bundle-Activator: org.eclipse.jdt.core.JavaCore
8
Bundle-Vendor: %providerName
8
Bundle-Vendor: %providerName
9
Bundle-Localization: plugin
9
Bundle-Localization: plugin
(-)buildnotes_jdt-core.html (+16 lines)
Lines 37-42 Link Here
37
	</td>
37
	</td>
38
  </tr>
38
  </tr>
39
</table>
39
</table>
40
<a name="v_690_R32x"></a>
41
<hr><h1>
42
Eclipse Platform Build Notes<br>
43
Java Development Tooling Core</h1>
44
Eclipse SDK  - %date% - 
45
<br>Project org.eclipse.jdt.core v_690_R32x
46
(<a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/?only_with_tag=v_690_R32x">cvs</a>).
47
<h2>What's new in this drop</h2>
48
<ul>
49
<li>Incremented plug-in version ID to &quot;3.2.7&quot;</li>
50
</ul>
51
52
<h3>Problem Reports Fixed</h3>
53
<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=216569">216569</a>
54
backport bug 178551 to R3_2
55
40
<a name="v_689_R32x"></a>
56
<a name="v_689_R32x"></a>
41
<p><hr><h1>
57
<p><hr><h1>
42
Eclipse Platform Build Notes<br>
58
Eclipse Platform Build Notes<br>
(-)scripts/META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 3-9 Link Here
3
Bundle-ManifestVersion: 2
3
Bundle-ManifestVersion: 2
4
Bundle-Name: Eclipse Compiler for Java
4
Bundle-Name: Eclipse Compiler for Java
5
Bundle-SymbolicName: org.eclipse.jdt.core.compiler.batch
5
Bundle-SymbolicName: org.eclipse.jdt.core.compiler.batch
6
Bundle-Version: 3.2.6
6
Bundle-Version: 3.2.7
7
Bundle-ClassPath: .
7
Bundle-ClassPath: .
8
Bundle-Vendor: Eclipse.org
8
Bundle-Vendor: Eclipse.org
9
Bundle-Localization: plugin
9
Bundle-Localization: plugin
(-)search/org/eclipse/jdt/internal/core/index/DiskIndex.java (-1 / +1 lines)
Lines 848-854 Link Here
848
		// how many characters can be decoded without refilling the buffer?
848
		// how many characters can be decoded without refilling the buffer?
849
		int charsInBuffer = i + ((this.bufferEnd - this.bufferIndex) / 3);
849
		int charsInBuffer = i + ((this.bufferEnd - this.bufferIndex) / 3);
850
		// all the characters must already be in the buffer if we're at the end of the stream
850
		// all the characters must already be in the buffer if we're at the end of the stream
851
		if (charsInBuffer > length || this.bufferEnd != this.streamBuffer.length)
851
		if (charsInBuffer > length || this.bufferEnd != this.streamBuffer.length || stream == null)
852
			charsInBuffer = length;
852
			charsInBuffer = length;
853
		while (i < charsInBuffer) {
853
		while (i < charsInBuffer) {
854
			byte b = this.streamBuffer[this.bufferIndex++];
854
			byte b = this.streamBuffer[this.bufferIndex++];
(-)scripts/exportplugin.xml (-99 / +7 lines)
Lines 1-119 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
3
<!-- build script to create a plugin from ${plugin} -->
3
<!-- build script to create a plugin from ${plugin} -->
4
<project name="${plugin}" default="export plug-in [_3.2.6]" basedir="..">
4
<project name="${plugin}" default="export plug-in [_3.2.7]" basedir="..">
5
5
6
<target name="export plug-in [_3.2.6]">
6
<target name="export plug-in [_3.2.7]">
7
    <tstamp/>
7
    <tstamp/>
8
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
8
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
9
	<antcall target="zz_internal_export">
9
	<antcall target="zz_internal_export">
10
		<param name="jdt_core_version" value="3.2.6"/>
10
		<param name="jdt_core_version" value="3.2.7"/>
11
	</antcall>
11
	</antcall>
12
</target>
12
</target>
13
<target name="export plug-in [_3.2.6.qualifier] (with sources)">
13
<target name="export plug-in [_3.2.7.qualifier] (with sources)">
14
    <tstamp/>
14
    <tstamp/>
15
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
15
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
16
	<antcall target="zz_internal_export_structure">
16
	<antcall target="zz_internal_export_structure">
17
		<param name="jdt_core_version" value="3.2.6.${qualifier}"/>
17
		<param name="jdt_core_version" value="3.2.7.${qualifier}"/>
18
	</antcall>
18
	</antcall>
19
</target>
19
</target>
20
<target name="export plug-in [_3.2.6.qualifier]">
20
<target name="export plug-in [_3.2.7.qualifier]">
21
    <tstamp/>
21
    <tstamp/>
22
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
22
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
23
	<antcall target="zz_internal_export">
23
	<antcall target="zz_internal_export">
24
		<param name="jdt_core_version" value="3.2.6.${qualifier}"/>
24
		<param name="jdt_core_version" value="3.2.7.${qualifier}"/>
25
	</antcall>
26
</target>
27
<target name="export plug-in [_3.2.5]">
28
    <tstamp/>
29
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
30
	<antcall target="zz_internal_export">
31
		<param name="jdt_core_version" value="3.2.5"/>
32
	</antcall>
33
</target>
34
<target name="export plug-in [_3.2.5.qualifier] (with sources)">
35
    <tstamp/>
36
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
37
	<antcall target="zz_internal_export_structure">
38
		<param name="jdt_core_version" value="3.2.5.${qualifier}"/>
39
	</antcall>
40
</target>
41
<target name="export plug-in [_3.2.5.qualifier]">
42
    <tstamp/>
43
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
44
	<antcall target="zz_internal_export">
45
		<param name="jdt_core_version" value="3.2.5.${qualifier}"/>
46
	</antcall>
47
</target>
48
<target name="export plug-in [_3.2.4]">
49
    <tstamp/>
50
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
51
	<antcall target="zz_internal_export">
52
		<param name="jdt_core_version" value="3.2.4"/>
53
	</antcall>
54
</target>
55
<target name="export plug-in [_3.2.4.qualifier] (with sources)">
56
    <tstamp/>
57
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
58
	<antcall target="zz_internal_export_structure">
59
		<param name="jdt_core_version" value="3.2.4.${qualifier}"/>
60
	</antcall>
61
</target>
62
<target name="export plug-in [_3.2.4.qualifier]">
63
    <tstamp/>
64
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
65
	<antcall target="zz_internal_export">
66
		<param name="jdt_core_version" value="3.2.4.${qualifier}"/>
67
	</antcall>
68
</target>
69
<target name="export plug-in [_3.2.3]">
70
    <tstamp/>
71
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
72
	<antcall target="zz_internal_export">
73
		<param name="jdt_core_version" value="3.2.3"/>
74
	</antcall>
75
</target>
76
<target name="export plug-in [_3.2.3.qualifier] (with sources)">
77
    <tstamp/>
78
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
79
	<antcall target="zz_internal_export_structure">
80
		<param name="jdt_core_version" value="3.2.3.${qualifier}"/>
81
	</antcall>
82
</target>
83
<target name="export plug-in [_3.2.3.qualifier]">
84
    <tstamp/>
85
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
86
	<antcall target="zz_internal_export">
87
		<param name="jdt_core_version" value="3.2.3.${qualifier}"/>
88
	</antcall>
89
</target>
90
<target name="export plug-in [_3.2.1]">
91
    <tstamp/>
92
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
93
	<antcall target="zz_internal_export">
94
		<param name="jdt_core_version" value="3.2.1"/>
95
	</antcall>
96
</target>
97
<target name="export plug-in [_3.2.1.qualifier] (with sources)">
98
    <tstamp/>
99
	<property name="qualifier" value="${DSTAMP}-${TSTAMP}" />
100
	<antcall target="zz_internal_export_structure">
101
		<param name="jdt_core_version" value="3.2.1.${qualifier}"/>
102
	</antcall>
103
</target>
104
<target name="export plug-in [_3.2.1.qualifier]">
105
    <tstamp/>
106
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
107
	<antcall target="zz_internal_export">
108
		<param name="jdt_core_version" value="3.2.1.${qualifier}"/>
109
	</antcall>
110
</target>
111
112
<target name="export plug-in [_3.2.0]">
113
    <tstamp/>
114
	<property name="qualifier" value="z${DSTAMP}-${TSTAMP}" />
115
	<antcall target="zz_internal_export">
116
		<param name="jdt_core_version" value="3.2.0"/>
117
	</antcall>
25
	</antcall>
118
</target>
26
</target>
119
27
(-)batch/org/eclipse/jdt/internal/compiler/batch/messages.properties (-1 / +1 lines)
Lines 14-20 Link Here
14
#Format: compiler.name = word1 word2 word3
14
#Format: compiler.name = word1 word2 word3
15
compiler.name = Eclipse Java Compiler
15
compiler.name = Eclipse Java Compiler
16
#Format: compiler.version = 0.XXX[, other words (don't forget the comma if adding other words)]
16
#Format: compiler.version = 0.XXX[, other words (don't forget the comma if adding other words)]
17
compiler.version = v_689_R32x, pre-3.2.3 release
17
compiler.version = v_690_R32x, pre-3.2.3 release
18
compiler.copyright = Copyright IBM Corp 2000, 2007. All rights reserved.
18
compiler.copyright = Copyright IBM Corp 2000, 2007. All rights reserved.
19
19
20
### progress
20
### progress

Return to bug 216569