Skip to content

Commit 48e362b

Browse files
committed
Revert unnecessary tmf.core minor version bump
The minor version has already been increased from 10.0.0 to 10.1.0 since the previous Trace Compass baseline. Signed-off-by: Patrick Tasse <[email protected]>
1 parent 29f71b0 commit 48e362b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tmf/org.eclipse.tracecompass.tmf.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-Vendor: %Bundle-Vendor
5-
Bundle-Version: 10.2.0.qualifier
5+
Bundle-Version: 10.1.0.qualifier
66
Bundle-Localization: plugin
77
Bundle-SymbolicName: org.eclipse.tracecompass.tmf.core;singleton:=true
88
Bundle-Activator: org.eclipse.tracecompass.internal.tmf.core.Activator

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/dataprovider/IDataProviderDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public enum ProviderType {
7171
* provider interface than TIME_GRAPH, but has a different x-axis other
7272
* than time, e.g. durations.
7373
*
74-
* @since 10.2
74+
* @since 10.1
7575
*/
7676
GANTT_CHART
7777
}

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/model/tree/TmfTreeModel.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class TmfTreeModel<T extends ITmfTreeDataModel> {
3535
/**
3636
* Expand level to indicate that all tree levels are expanded. (default)
3737
*
38-
* @since 10.2
38+
* @since 10.1
3939
*/
4040
public static final int ALL_LEVELS = -1;
4141

@@ -138,7 +138,7 @@ public List<T> getEntries() {
138138
* @return non-negative level, or <code>ALL_LEVELS</code> if all levels of
139139
* the tree are expanded automatically
140140
* @see #setAutoExpandLevel
141-
* @since 10.2
141+
* @since 10.1
142142
*/
143143
public int getAutoExpandLevel() {
144144
return fAutoExpandLevel;
@@ -156,7 +156,7 @@ public int getAutoExpandLevel() {
156156
*
157157
* @param autoExpandLevel
158158
* The auto expand level to set
159-
* @since 10.2
159+
* @since 10.1
160160
*/
161161
public void setAutoExpandLevel(int autoExpandLevel) {
162162
this.fAutoExpandLevel = autoExpandLevel;
@@ -227,7 +227,7 @@ public Builder<T> setScope(String scope) {
227227
* expand level of the tree model
228228
* @return this {@link Builder} object
229229
* @see TmfTreeModel#setAutoExpandLevel(int)
230-
* @since 10.2
230+
* @since 10.1
231231
*/
232232
public Builder<T> setAutoExpandLevel(int autoExpandLevel) {
233233
fAutoExpandLevel = autoExpandLevel;

0 commit comments

Comments
 (0)