Project

General

Profile

« Previous | Next » 

Revision b0e33417

Added by unknown over 6 years ago

ref #7094 revert remove space between initials and name in nomencl. person title as default

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/strategy/parser/NonViralNameParserImpl.java
65 65
	final static boolean MAKE_NOT_EMPTY = false;
66 66

  
67 67
	private final boolean authorIsAlwaysTeam = false;
68
	private final boolean removeSpaceAfterDot = false;
68
	private boolean removeSpaceAfterDot = false;
69 69

  
70
	public static NonViralNameParserImpl NewInstance(){
70
    public static NonViralNameParserImpl NewInstance(){
71 71
		return new NonViralNameParserImpl();
72 72
	}
73 73

  
......
1525 1525
		//hybrid relationships handled in hybrid formula and at end of fullNameParser
1526 1526
	}
1527 1527

  
1528

  
1528 1529
    /**
1529
     * @return the removeSpaceAfterDot
1530
     * If <code>true</code> author names are parsed such that spaces after the abbreviated
1531
     * firstname are removed (IPNI style). see #7094
1530 1532
     */
1531 1533
    public boolean isRemoveSpaceAfterDot() {
1532 1534
        return removeSpaceAfterDot;
1533 1535
    }
1536
    /**
1537
     * @see #isRemoveSpaceAfterDot()
1538
     */
1539
    public void setRemoveSpaceAfterDot(boolean removeSpaceAfterDot) {
1540
        this.removeSpaceAfterDot = removeSpaceAfterDot;
1541
    }
1534 1542
}

Also available in: Unified diff