Skip to content

Commit a2df6a1

Browse files
author
Simon MacMullen
committed
Add a stub to redirect people.
1 parent 1dde5c5 commit a2df6a1

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// The contents of this file are subject to the Mozilla Public License
2+
// Version 1.1 (the "License"); you may not use this file except in
3+
// compliance with the License. You may obtain a copy of the License
4+
// at http://www.mozilla.org/MPL/
5+
//
6+
// Software distributed under the License is distributed on an "AS IS"
7+
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
8+
// the License for the specific language governing rights and
9+
// limitations under the License.
10+
//
11+
// The Original Code is RabbitMQ.
12+
//
13+
// The Initial Developer of the Original Code is GoPivotal, Inc.
14+
// Copyright (c) 2007-2013 GoPivotal, Inc. All rights reserved.
15+
//
16+
17+
package com.rabbitmq.examples;
18+
19+
/**
20+
* TODO: delete this after a suitable time has passed
21+
*/
22+
public class MulticastMain {
23+
public static void main(String[] args) {
24+
System.out.println();
25+
System.out.println("********************************************************");
26+
System.out.println("* NOTE: *");
27+
System.out.println("* com.rabbitmq.examples.MulticastMain is now known as *");
28+
System.out.println("* com.rabbitmq.examples.PerfTest *");
29+
System.out.println("* *");
30+
System.out.println("********************************************************");
31+
System.out.println();
32+
System.exit(1);
33+
}
34+
}

0 commit comments

Comments
 (0)