1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2013-12-05 18:16:26 -08:00
parent 2668018f30
commit b52beeb11b

View file

@ -52,10 +52,6 @@ public class CheckerInvocationContext implements ICheckerInvocationContext {
return null;
}
/*
* (non-Javadoc)
* @see ICheckerInvocationContext#add(Object)
*/
@Override
public synchronized <T extends ICodanDisposable> void add(T object) {
Object old = objectStorage.put(object.getClass(), object);
@ -65,10 +61,6 @@ public class CheckerInvocationContext implements ICheckerInvocationContext {
}
}
/*
* (non-Javadoc)
* @see IDisposableCache#dispose()
*/
@Override
public void dispose() {
for (Map.Entry<Class<?>, Object> entry : objectStorage.entrySet()) {