mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
6765045: Remove rawtypes warnings from langtools
Removed all occurrences of rawtypes warnings from langtools Reviewed-by: jjg, bpatel
This commit is contained in:
parent
a23159ffac
commit
795b53a014
60 changed files with 229 additions and 231 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue