Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove all @author comments and empty method/class comments #3911

Merged
merged 3 commits into from
Apr 1, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/main/java/org/jabref/gui/DragDropPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

/**
* Extends the JTabbedPane class to support Drag&Drop of Tabs.
*
* @author kleinms, strassfn
*/
class DragDropPane extends JTabbedPane {

Expand Down
4 changes: 0 additions & 4 deletions src/main/java/org/jabref/gui/FindUnlinkedFilesDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -1008,10 +1008,6 @@ private void createEntryTypesCombobox() {

/**
* Wrapper for displaying the Type {@link BibtexEntryType} in a Combobox.
*
* @author Nosh&Dan
* @version 12.11.2008 | 01:02:30
*
*/
private static class BibtexEntryTypeWrapper {

Expand Down
6 changes: 1 addition & 5 deletions src/main/java/org/jabref/gui/MergeDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,8 @@
import org.jabref.logic.l10n.Localization;

/**
* <p>Title: MergeDialog</p>
* <p>Description: Asks for details about merge database operation.</p>
* <p>Copyright: Copyright (c) 2003</p>
* @author Morten O. Alver
* Asks for details about merge database operation.
*/

public class MergeDialog extends JabRefDialog {

private final JPanel panel1 = new JPanel();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/**
* This class extends FieldSetComponent to provide some required functionality for the
* list of entry types in EntryCustomizationDialog.
* @author alver
*/
public class EntryTypeList extends FieldSetComponent implements ListSelectionListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
import org.jabref.logic.l10n.Localization;
import org.jabref.preferences.JabRefPreferences;

/**
* @author alver
*/
class FieldSetComponent extends JPanel {

protected final JList<String> list;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,6 @@
import ca.odell.glazedlists.swing.DefaultEventTableModel;
import com.jgoodies.forms.builder.ButtonBarBuilder;

/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/

public class ExportCustomizationDialog extends JabRefDialog {

// Column widths for export customization dialog table:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

/**
* Renders a GroupTreeNode using its group's getName() method, rather that its toString() method.
*
* @author jzieren
*/
public class GroupTreeCellRenderer extends DefaultTreeCellRenderer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
* other hand it provides the functionality to create a Bibtex entry out of a
* file. The interface extends the java.io.FileFilter to inherit a common way of
* defining file sets.
*
* @author Dan&Nosh
* @version 25.11.2008 | 23:39:03
*
*/
public abstract class EntryFromFileCreator implements FileFilter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* Given a file, the manager can then provide a creator, which is able to create a Bibtex entry for his file.
* Knowing all implementations of the interface, the manager also knows the set of all files, of which Bibtex entries can be created.
* The GUI uses this capability for offering the user only such files, of which entries could actually be created.
* @author Dan&Nosh
*
*/
public final class EntryFromFileCreatorManager {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
* Uses XMPUtils to get one BibEntry for a PDF-File.
* Also imports the non-XMP Data (PDDocument-Information) using XMPUtil.getBibtexEntryFromDocumentInformation.
* If data from more than one entry is read by XMPUtil then this entys are merged into one.
* @author Dan
* @version 12.11.2008 | 22:12:48
*
*/
public class EntryFromPDFCreator extends EntryFromFileCreator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@
* This {@link FileFilter} sits on top of another {@link FileFilter}
* -implementation, which it first consults. Only if this major filefilter
* has accepted a file, this implementation will verify on that file.
*
* @author Nosh&Dan
* @version 12.11.2008 | 02:00:15
*
*/
public class UnlinkedPDFFileFilter implements FileFilter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@
* This class allows to access the Slac INSPIRE database. It is just a port of the original SPIRES Fetcher.
*
* It can either be a GeneralFetcher to pose requests to the database or fetch individual entries.
*
* @author Fedor Bezrukov
* @author Sheer El-Showk
*
* @version $Id$
*
*/
public class INSPIREFetcher implements EntryFetcher {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@
* This class can be used to access any archive offering an OAI2 interface. By
* default it will access ArXiv.org
*
* @author Ulrich St&auml;rk
* @author Christian Kopf
* @see <a href="http://arxiv.org/help/oa/index"></a>
*/
public class OAI2Fetcher implements EntryFetcher {
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/org/jabref/gui/mergeentries/MergeEntries.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author Oscar Gustafsson
*
* Class for dealing with merging entries
*/

public class MergeEntries {

private static final Logger LOGGER = LoggerFactory.getLogger(MergeEntries.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
import com.jgoodies.forms.layout.FormLayout;
import com.jgoodies.forms.layout.RowSpec;

/**
* @author Oscar
*
* Dialog for merging two Bibtex entries
*/
public class MergeEntriesDialog extends JabRefDialog {

private static final String MERGE_ENTRIES = Localization.lang("Merge entries");
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/org/jabref/logic/exporter/OOCalcDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@
import org.w3c.dom.Element;
import org.w3c.dom.Text;

/**
* @author Morten O. Alver.
* Based on net.sf.jabref.MODSDatabase by Michael Wrighton
*
*/
class OOCalcDatabase {

private static final Logger LOGGER = LoggerFactory.getLogger(OOCalcDatabase.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@
import org.w3c.dom.Element;
import org.w3c.dom.Text;

/**
* @author Morten O. Alver.
* Based on net.sf.jabref.MODSDatabase by Michael Wrighton
*
*/
class OpenDocumentRepresentation {

private static final Logger LOGGER = LoggerFactory.getLogger(OpenDocumentRepresentation.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author alver
*/
public class OpenDocumentSpreadsheetCreator extends Exporter {

private static final Logger LOGGER = LoggerFactory.getLogger(OpenDocumentSpreadsheetCreator.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author alver
*/
public class OpenOfficeDocumentCreator extends Exporter {

private static final Logger LOGGER = LoggerFactory.getLogger(OpenOfficeDocumentCreator.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
*
* check here for details on the format
* http://www.nlm.nih.gov/bsd/mms/medlineelements.html
*
* @author vegeziel
*/
public class MedlinePlainImporter extends Importer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,6 @@
* '\n-----------------------------'
* </pre>
* </p>
*
* @author andreas_sf at rudert-home dot de
* @see <a href="http://nep.repec.org">NEP</a>
*/
public class RepecNepImporter extends Importer {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@
*
* Note: this is just a quick port of the original SPIRESBibtexFilterReader.
*
* @author Fedor Bezrukov
* @author Sheer El-Showk
*
* @version $Id$
*
* TODO: Fix grammar in bibtex entries -- it ma return invalid bibkeys (with space)
* TODO: Fix grammar in bibtex entries -- it may return invalid bibkeys (with space)
*
*/
public class INSPIREBibtexFilterReader extends FilterReader {
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/org/jabref/logic/importer/util/OAI2Handler.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@

/**
* SAX-Handler to parse OAI2-xml files.
*
* @author Ulrich St&auml;rk
* @author Christian Kopf
* @author Christopher Oezbek
*/
public class OAI2Handler extends DefaultHandler {

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/jabref/logic/layout/StringInt.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

/**
* String and integer value.
*
* @author wegnerj
*/
public class StringInt implements java.io.Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
* Duplicate of AuthorLastFirstAbbreviator.
*
* @see AuthorLastFirstAbbreviator
*
* @author Carlos Silla
*/
public class AuthorAbbreviator implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
/**
* Replaces and's for & (in case of two authors) and , (in case
* of more than two authors).
*
* @author Carlos Silla
*/
public class AuthorAndsCommaReplacer implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
/**
* Replaces and's for & (in case of two authors) and ; (in case
* of more than two authors).
*
* @author Carlos Silla
*/
public class AuthorAndsReplacer implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
* <li>Individual authors separated by comma.</li>
* <li>There is no command in front the and of a list of three or more authors.</li>
* </ul>
*
* @author Christopher Oezbek <oezi@oezi.de>
*/
public class AuthorFirstAbbrLastCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
* <li>The and of a list of three or more authors is preceeded by a comma
* (Oxford comma)</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorFirstAbbrLastOxfordCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
* <li>Individual authors are separated by commas.</li>
* <li>There is no comma before the 'and' at the end of a list of three or more authors</li>
* </ul>
*
* @author Morten O. Alver / Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorFirstFirstCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
* <li>Individual authors separated by comma.</li>
* <li>There is no comma before the and of a list of three or more authors.</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorFirstLastCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
* <li>The and of a list of three or more authors is preceeded by a comma
* (Oxford comma)</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorFirstLastOxfordCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
* <li>Individual authors are separated by commas.</li>
* <li>There is no comma before the 'and' at the end of a list of three or more authors</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorLastFirstAbbrCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
* <li>The 'and' of a list of three or more authors is preceeded by a comma
* (Oxford comma)</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorLastFirstAbbrOxfordCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
* <li>Individual authors are separated by commas.</li>
* <li>There is no comma before the 'and' at the end of a list of three or more authors</li>
* </ul>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorLastFirstCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
* <li>Individual authors are separated by commas.</li>
* <li>The 'and' of a list of three or more authors is preceeded by a comma
* (Oxford comma)</li>
*
* @author mkovtun
* @author Christopher Oezbek <oezi@oezi.de>
*
*/
public class AuthorLastFirstOxfordCommas implements LayoutFormatter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
/**
* Natbib style: Last names only. Two authors are separated by "and",
* three or more authors are given as "Smith et al."
*
* @author Morten O. Alver
*/
public class AuthorNatBib implements LayoutFormatter {

Expand Down
Loading