X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft-example%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fexample%2FLogGenerator.java;h=f40952300ad20f47f6e4f040b54a9316be888171;hp=fbe1447c72d9f10843ba94bbcedbf5a03d007e06;hb=5da76746641dd1c9c5917b67faaab7245249a806;hpb=869d6bd3f66ca2b655d7690afe6a432700749907 diff --git a/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/LogGenerator.java b/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/LogGenerator.java index fbe1447c72..f40952300a 100644 --- a/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/LogGenerator.java +++ b/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/LogGenerator.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.controller.cluster.example; import akka.actor.ActorRef; @@ -11,7 +19,7 @@ import java.util.Random; * Created by kramesha on 7/16/14. */ public class LogGenerator { - private Map clientToLoggingThread = new HashMap(); + private Map clientToLoggingThread = new HashMap<>(); public void startLoggingForClient(ActorRef client) { LoggingThread lt = new LoggingThread(client);