mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
Fixed warnings
This commit is contained in:
parent
09d42ac811
commit
01e44176ed
1 changed files with 1 additions and 2 deletions
|
@ -837,7 +837,6 @@ public class Rendering extends Composite implements IDebugEventSetListener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
while(!fDisposed)
|
while(!fDisposed)
|
||||||
|
@ -849,7 +848,7 @@ public class Rendering extends Composite implements IDebugEventSetListener
|
||||||
if(fQueue.size() > 0)
|
if(fQueue.size() > 0)
|
||||||
{
|
{
|
||||||
Request request = (Request) fQueue.elementAt(0);
|
Request request = (Request) fQueue.elementAt(0);
|
||||||
Class type = request.getClass();
|
Class<?> type = request.getClass();
|
||||||
|
|
||||||
while(fQueue.size() > 0 && type.isInstance(fQueue.elementAt(0)))
|
while(fQueue.size() > 0 && type.isInstance(fQueue.elementAt(0)))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue