Skip to content

Commit

Permalink
added explicit license.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronp committed Oct 23, 2019
1 parent 1ca2b64 commit 5e77cfb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2019 Porpoise Ltd

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
14 changes: 7 additions & 7 deletions src/main/scala/kafka4m/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,17 @@ package object kafka4m {
}

/** @param config the root configuration
* @return the producer topic as per the config
*/
* @return the producer topic as per the config
*/
def producerTopic(config: Config) = Props.topic(config, "producer")

/** @param config the root configuration
* @return the consumer topic as per the config
*/
* @return the consumer topic as per the config
*/
def consumerTopic(config: Config) = Props.topic(config, "consumer")

/** @param config the root configuration
* @return the admin topic as per the config
*/
def adminTopic(config: Config) = Props.topic(config, "admin")
* @return the admin topic as per the config
*/
def adminTopic(config: Config) = Props.topic(config, "admin")
}

0 comments on commit 5e77cfb

Please sign in to comment.