Skip to content

Commit 498f562

Browse files
committed
enforce use of Enlish labels when possible for ontologies (+tests); remove CVS tags; fix mentions of Gemma; update copyright information for some files;
1 parent 3fff3a8 commit 498f562

259 files changed

Lines changed: 398 additions & 382 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/ubic/basecode/dataStructure/BitUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2424
* Based on code from: Derby - Class org.apache.derbyTesting.unitTests.util.BitUtil
2525
*
2626
* @author paul
27-
* @version $Id$
27+
*
2828
*/
2929
public class BitUtil {
3030

src/ubic/basecode/dataStructure/CountingMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* The Gemma project
2+
* The basecode project
33
*
4-
* Copyright (c) 2008 University of British Columbia
4+
* Copyright (c) 2008-2019 University of British Columbia
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -34,7 +34,7 @@
3434
* This replaces the idiom of map.containsKey(k) ? map.put(k, map.get(k) + 1) : map.put(k, 0);
3535
*
3636
* @author luke
37-
* @version $Id$
37+
*
3838
* @param <K>
3939
*/
4040
public class CountingMap<K> implements Map<K, Integer> {

src/ubic/basecode/dataStructure/DoubleAddingMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Similar to ubic.gemma.util.CountingMap. Except instead it adds the values of the keys.
88
*
99
* @author ?
10-
* @version $Id$
10+
*
1111
*/
1212
public class DoubleAddingMap<K> extends HashMap<K, Double> {
1313

src/ubic/basecode/dataStructure/DoublePoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The baseCode project
33
*
4-
* Copyright (c) 2008 University of British Columbia
4+
* Copyright (c) 2008-2019 University of British Columbia
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* @author klc
23-
* @version $Id$
23+
*
2424
*/
2525
public class DoublePoint {
2626

src/ubic/basecode/dataStructure/Link.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* is important for some applications).
2626
*
2727
* @author Paul Pavlidis
28-
* @version $Id$
28+
*
2929
*/
3030
public class Link extends Point implements Comparable<Link> {
3131

src/ubic/basecode/dataStructure/Point.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* @author Paul Pavlidis
23-
* @version $Id$
23+
*
2424
*/
2525
public class Point {
2626

src/ubic/basecode/dataStructure/StringToStringSetMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* The Gemma project
2+
* The basecode project
33
*
4-
* Copyright (c) 2007 University of British Columbia
4+
* Copyright (c) 2007-2019 University of British Columbia
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@
3232
* Implemented to store string based many to many relationships.
3333
*
3434
* @author leon
35-
* @version $Id$
35+
*
3636
*/
3737
public class StringToStringSetMap extends HashMap<String, Set<String>> {
3838

src/ubic/basecode/dataStructure/Visitable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* @author pavlidis
23-
* @version $Id$
23+
*
2424
*/
2525
public abstract class Visitable {
2626

src/ubic/basecode/dataStructure/graph/AbstractGraph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/**
2727
* @author Paul Pavlidis
28-
* @version $Id$
28+
*
2929
*/
3030
public abstract class AbstractGraph<R extends GraphNode<K, V>, K, V> implements Graph<R, K, V> {
3131

src/ubic/basecode/dataStructure/graph/AbstractGraphNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
/**
2424
* @author Paul Pavlidis
25-
* @version $Id$
25+
*
2626
*/
2727
public abstract class AbstractGraphNode<K, V> extends Visitable implements GraphNode<K, V> {
2828
protected V item;

0 commit comments

Comments
 (0)