--- a/jdk/src/share/classes/sun/rmi/runtime/Log.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/runtime/Log.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2001, 2008, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -61,6 +61,7 @@
* @author Laird Dornin
* @since 1.4
*/
+@SuppressWarnings("deprecation")
public abstract class Log {
/** Logger re-definition of old RMI log values */
--- a/jdk/src/share/classes/sun/rmi/server/ActivatableRef.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/ActivatableRef.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -41,6 +41,7 @@
import java.rmi.server.RemoteRef;
import java.rmi.server.RemoteStub;
+@SuppressWarnings("deprecation")
public class ActivatableRef implements RemoteRef {
private static final long serialVersionUID = 7579060052569229166L;
--- a/jdk/src/share/classes/sun/rmi/server/Dispatcher.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/Dispatcher.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -31,6 +31,7 @@
* The Dispatcher interface allows the transport to make
* the upcall to the server side remote reference.
*/
+@SuppressWarnings("deprecation")
public interface Dispatcher {
/**
--- a/jdk/src/share/classes/sun/rmi/server/LoaderHandler.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/LoaderHandler.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -67,6 +67,7 @@
* @author Peter Jones
* @author Laird Dornin
*/
+@SuppressWarnings("deprecation")
public final class LoaderHandler {
/** RMI class loader log level */
--- a/jdk/src/share/classes/sun/rmi/server/UnicastRef.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/UnicastRef.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,8 @@
* NOTE: There is a JDK-internal dependency on the existence of this
* class's getLiveRef method (as it is inherited by UnicastRef2) in
* the implementation of javax.management.remote.rmi.RMIConnector.
- **/
+ */
+@SuppressWarnings("deprecation")
public class UnicastRef implements RemoteRef {
/**
--- a/jdk/src/share/classes/sun/rmi/server/UnicastServerRef.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/UnicastServerRef.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -67,6 +67,7 @@
* @author Roger Riggs
* @author Peter Jones
*/
+@SuppressWarnings("deprecation")
public class UnicastServerRef extends UnicastRef
implements ServerRef, Dispatcher
{
--- a/jdk/src/share/classes/sun/rmi/server/Util.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/server/Util.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -64,6 +64,7 @@
* A utility class with static methods for creating stubs/proxies and
* skeletons for remote objects.
*/
+@SuppressWarnings("deprecation")
public final class Util {
/** "server" package log level */
--- a/jdk/src/share/classes/sun/rmi/transport/DGCImpl.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/DGCImpl.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -59,6 +59,7 @@
*
* @author Ann Wollrath
*/
+@SuppressWarnings("deprecation")
final class DGCImpl implements DGC {
/* dgc system log */
--- a/jdk/src/share/classes/sun/rmi/transport/StreamRemoteCall.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/StreamRemoteCall.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -45,6 +45,7 @@
*
* @author Ann Wollrath
*/
+@SuppressWarnings("deprecation")
public class StreamRemoteCall implements RemoteCall {
private ConnectionInputStream in = null;
private ConnectionOutputStream out = null;
--- a/jdk/src/share/classes/sun/rmi/transport/Transport.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/Transport.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -47,6 +47,7 @@
*
* @author Ann Wollrath
*/
+@SuppressWarnings("deprecation")
public abstract class Transport {
/** "transport" package log level */
--- a/jdk/src/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -44,6 +44,7 @@
* connect to the same host will automatically use the same
* mechanism.
*/
+@SuppressWarnings("deprecation")
public class RMIMasterSocketFactory extends RMISocketFactory {
/** "proxy" package log level */
--- a/jdk/src/share/classes/sun/rmi/transport/tcp/ConnectionMultiplexer.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/tcp/ConnectionMultiplexer.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -43,6 +43,7 @@
*
* @author Peter Jones
*/
+@SuppressWarnings("deprecation")
final class ConnectionMultiplexer {
/** "multiplex" log level */
--- a/jdk/src/share/classes/sun/rmi/transport/tcp/TCPTransport.java Tue Aug 06 14:10:06 2013 -0700
+++ b/jdk/src/share/classes/sun/rmi/transport/tcp/TCPTransport.java Tue Aug 06 14:24:05 2013 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -84,6 +84,7 @@
* @author Ann Wollrath
* @author Peter Jones
*/
+@SuppressWarnings("deprecation")
public class TCPTransport extends Transport {
/* tcp package log */