1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 17:25:38 +02:00

[fix] Declare collectTestLogs final

This commit is contained in:
Uwe Stieber 2007-01-02 10:34:46 +00:00
parent 8507f14015
commit 4337898298

View file

@ -600,7 +600,7 @@ public class RSECoreTestCase extends TestCase {
*
* @param test The failed test. Must be not <code>null</code>.
*/
protected synchronized void collectTestLogs(Test test) {
protected final synchronized void collectTestLogs(Test test) {
if (test != null) {
// get a snapshot of the currently known test log collector delegates
IRSETestLogCollectorDelegate[] delegates = RSETestsPlugin.getDefault().getTestLogCollectorDelegates();