| 1 | package com.winvector; |
| 2 | |
| 3 | public class Licenses { |
| 4 | public static final String licenses = |
| 5 | "\n" + |
| 6 | "[\n" + |
| 7 | "\n" + |
| 8 | "Licenses\n" + |
| 9 | "\n" + |
| 10 | " Packages com.winvector.*\n" + |
| 11 | " Code for performing logistic regression on Hadoop.\n" + |
| 12 | " Copyright (C) Win Vector LLC 2010 (contact: John Mount jmount@win-vector.com).\n" + |
| 13 | " Distributed under GNU Affero General Public License version 3 (2007, see http://www.gnu.org/licenses/agpl.html ).\n" + |
| 14 | " This program is free software: you can redistribute it and/or modify\n" + |
| 15 | " it under the terms of the GNU Affero General Public License as\n" + |
| 16 | " published by the Free Software Foundation, only version 3 of the\n" + |
| 17 | " License.\n" + |
| 18 | " This program is distributed in the hope that it will be useful,\n" + |
| 19 | " but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + |
| 20 | " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + |
| 21 | " GNU Affero General Public License for more details.\n" + |
| 22 | " You should have received a copy of the GNU Affero General Public License\n" + |
| 23 | " along with this program. If not, see <http://www.gnu.org/licenses/>.\n" + |
| 24 | " (Source code in this Jar, see also http://www.win-vector.com/ )\n" + |
| 25 | "]\n" + |
| 26 | "\n"; |
| 27 | |
| 28 | public static void main(String[] args) { |
| 29 | System.out.println(licenses); |
| 30 | } |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected