Skip to content

Commit f87b403

Browse files
tracecompass.tmf.core: Public API in the data provider class
1 parent 9bd0937 commit f87b403

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ public String getId() {
188188
*
189189
* @return the list of encapsulated providers
190190
*/
191-
protected List<P> getProviders() {
192-
return fProviders;
191+
public List<P> getProviders() {
192+
return Collections.unmodifiableList(fProviders);
193193
}
194194

195195
/**

0 commit comments

Comments
 (0)