6765045: Remove rawtypes warnings from langtools

Removed all occurrences of rawtypes warnings from langtools

Reviewed-by: jjg, bpatel
This commit is contained in:
Maurizio Cimadamore 2009-01-13 13:27:14 +00:00
parent a23159ffac
commit 795b53a014
60 changed files with 229 additions and 231 deletions

View file

@ -302,7 +302,7 @@ public class MethodData {
/**
* Return LineNumberTable
*/
public Vector getlin_num_tb(){
public Vector<?> getlin_num_tb(){
return lin_num_tb;
}
@ -317,7 +317,7 @@ public class MethodData {
/**
* Return LocalVariableTable.
*/
public Vector getloc_var_tb(){
public Vector<?> getloc_var_tb(){
return loc_var_tb;
}
@ -378,7 +378,7 @@ public class MethodData {
/**
* Return exception table in code attributre.
*/
public Vector getexception_table(){
public Vector<?> getexception_table(){
return exception_table;
}
@ -386,7 +386,7 @@ public class MethodData {
/**
* Return method attributes.
*/
public Vector getAttributes(){
public Vector<?> getAttributes(){
return attrs;
}
@ -394,7 +394,7 @@ public class MethodData {
/**
* Return code attributes.
*/
public Vector getCodeAttributes(){
public Vector<?> getCodeAttributes(){
return code_attrs;
}