aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/org
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/org')
-rw-r--r--libjava/classpath/org/omg/CORBA/LocalObject.java2
-rw-r--r--libjava/classpath/org/omg/CORBA/portable/Delegate.java2
-rw-r--r--libjava/classpath/org/omg/CORBA/portable/InputStream.java2
-rw-r--r--libjava/classpath/org/omg/CORBA/portable/ObjectImpl.java2
-rw-r--r--libjava/classpath/org/omg/CORBA_2_3/portable/InputStream.java4
-rw-r--r--libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynStructStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java2
-rw-r--r--libjava/classpath/org/omg/DynamicAny/_DynValueStub.java2
-rw-r--r--libjava/classpath/org/omg/PortableServer/_ServantActivatorStub.java2
-rw-r--r--libjava/classpath/org/omg/PortableServer/_ServantLocatorStub.java2
17 files changed, 18 insertions, 18 deletions
diff --git a/libjava/classpath/org/omg/CORBA/LocalObject.java b/libjava/classpath/org/omg/CORBA/LocalObject.java
index 60436ee..cb0a7e3 100644
--- a/libjava/classpath/org/omg/CORBA/LocalObject.java
+++ b/libjava/classpath/org/omg/CORBA/LocalObject.java
@@ -267,7 +267,7 @@ public class LocalObject
*
* @throws NO_IMPLEMENT always. If used, the method must be overridden.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public ServantObject _servant_preinvoke(String operation, Class expectedType)
{
throw new NO_IMPLEMENT(INAPPROPRIATE);
diff --git a/libjava/classpath/org/omg/CORBA/portable/Delegate.java b/libjava/classpath/org/omg/CORBA/portable/Delegate.java
index 33812ab..798a1c5 100644
--- a/libjava/classpath/org/omg/CORBA/portable/Delegate.java
+++ b/libjava/classpath/org/omg/CORBA/portable/Delegate.java
@@ -376,7 +376,7 @@ public abstract class Delegate
* @return the servant or null if the servant is not an expected type
* of the method is not supported, for example, due security reasons.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public ServantObject servant_preinvoke(org.omg.CORBA.Object self,
String operation, Class expectedType
)
diff --git a/libjava/classpath/org/omg/CORBA/portable/InputStream.java b/libjava/classpath/org/omg/CORBA/portable/InputStream.java
index aee540d..4ac63b6 100644
--- a/libjava/classpath/org/omg/CORBA/portable/InputStream.java
+++ b/libjava/classpath/org/omg/CORBA/portable/InputStream.java
@@ -237,7 +237,7 @@ public abstract class InputStream
* @param klass a CORBA class
* @throws NO_IMPLEMENT, always.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public Object read_Object(Class klass)
{
throw new NO_IMPLEMENT();
diff --git a/libjava/classpath/org/omg/CORBA/portable/ObjectImpl.java b/libjava/classpath/org/omg/CORBA/portable/ObjectImpl.java
index c7ee707..5b7919fd 100644
--- a/libjava/classpath/org/omg/CORBA/portable/ObjectImpl.java
+++ b/libjava/classpath/org/omg/CORBA/portable/ObjectImpl.java
@@ -341,7 +341,7 @@ public abstract class ObjectImpl
* @return the servant or null if the servant is not an expected type
* of the method is not supported, for example, due security reasons.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public ServantObject _servant_preinvoke(String method, Class expected_type)
{
return delegate.servant_preinvoke(this, method, expected_type);
diff --git a/libjava/classpath/org/omg/CORBA_2_3/portable/InputStream.java b/libjava/classpath/org/omg/CORBA_2_3/portable/InputStream.java
index b457abe..33ad522 100644
--- a/libjava/classpath/org/omg/CORBA_2_3/portable/InputStream.java
+++ b/libjava/classpath/org/omg/CORBA_2_3/portable/InputStream.java
@@ -99,7 +99,7 @@ public abstract class InputStream
*
* @return an abstract interface, unmarshaled from the stream
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public Object read_abstract_interface(Class clz)
{
boolean isValue = read_boolean();
@@ -148,7 +148,7 @@ public abstract class InputStream
*
* @return an value type structure, unmarshaled from the stream
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public Serializable read_value(Class clz)
{
return Vio.read(this, clz);
diff --git a/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java b/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
index e9496ff..4273bfc 100644
--- a/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
+++ b/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
@@ -136,7 +136,7 @@ public abstract class OutputStream
*
* @param value a value type object to write.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public void write_value(Serializable value, Class clz)
{
Vio.write(this, value, clz);
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java b/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java
index dcfb9b5..c093993 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java
@@ -68,7 +68,7 @@ public class _DynAnyFactoryStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynAnyFactoryOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java b/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java
index 1a81be3..a2adec9 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java
@@ -66,7 +66,7 @@ public class _DynAnyStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynAnyOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java b/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java
index 74e763b..719cf87 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java
@@ -66,7 +66,7 @@ public class _DynArrayStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynArrayOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java b/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java
index e56ed75..07b2b7c 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java
@@ -66,7 +66,7 @@ public class _DynEnumStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynEnumOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java b/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java
index 759b48a..51eadf0 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java
@@ -66,7 +66,7 @@ public class _DynFixedStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynFixedOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java b/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java
index 488a7de..6de97b2 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java
@@ -67,7 +67,7 @@ public class _DynSequenceStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynSequenceOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java b/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java
index 907f3c8..f2ca27f 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java
@@ -68,7 +68,7 @@ public class _DynStructStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynStructOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java b/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java
index 6789a34..de351d8 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java
@@ -68,7 +68,7 @@ public class _DynUnionStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynUnionOperations.class;
/**
diff --git a/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java b/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java
index fffccfe..199b7eb 100644
--- a/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java
+++ b/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java
@@ -68,7 +68,7 @@ public class _DynValueStub
/**
* The purpose and value of this field are not documented.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = DynValueOperations.class;
/**
diff --git a/libjava/classpath/org/omg/PortableServer/_ServantActivatorStub.java b/libjava/classpath/org/omg/PortableServer/_ServantActivatorStub.java
index 658ac68..811d743 100644
--- a/libjava/classpath/org/omg/PortableServer/_ServantActivatorStub.java
+++ b/libjava/classpath/org/omg/PortableServer/_ServantActivatorStub.java
@@ -70,7 +70,7 @@ public class _ServantActivatorStub
* This the purpose of this field is undocumented up till 1.5 java API
* inclusive.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = ServantActivatorOperations.class;
/**
diff --git a/libjava/classpath/org/omg/PortableServer/_ServantLocatorStub.java b/libjava/classpath/org/omg/PortableServer/_ServantLocatorStub.java
index 039140e..f63340f 100644
--- a/libjava/classpath/org/omg/PortableServer/_ServantLocatorStub.java
+++ b/libjava/classpath/org/omg/PortableServer/_ServantLocatorStub.java
@@ -71,7 +71,7 @@ public class _ServantLocatorStub
* This the purpose of this field is undocumented up till 1.5 java API
* inclusive.
*/
- @SuppressWarnings("unchecked") // Needed for API compatibility
+ @SuppressWarnings("rawtypes") // Needed for API compatibility
public static final Class _opsClass = ServantLocatorOperations.class;
/**