Skip to content

Commit

Permalink
docs: remove useless auto generated javadoc class comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thetric committed Mar 9, 2017
1 parent 48886d8 commit e616428
Show file tree
Hide file tree
Showing 21 changed files with 3 additions and 85 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import com.github.thetric.iliasdownloader.service.model.Course
import com.github.thetric.iliasdownloader.service.model.CourseFile
import com.github.thetric.iliasdownloader.service.model.LoginCredentials
import groovy.transform.CompileStatic

/**
* Provides access to the Ilias.
* This interface provides some methods for basic session management (login, logout) and it can list the courses
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ package com.github.thetric.iliasdownloader.service

import groovy.transform.CompileStatic

/**
* @author broj
* @since 25.09.2016
*/
@CompileStatic
interface IliasServiceProvider {
IliasService newInstance()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ package com.github.thetric.iliasdownloader.service.exception

import groovy.transform.CompileStatic

/**
* @author broj
* @since 09.10.2016
*/
@CompileStatic
class CourseItemNotFoundException extends IliasException {
private static final long serialVersionUID = 654654651649684L
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ package com.github.thetric.iliasdownloader.service.model

import groovy.transform.CompileStatic

/**
* @author broj
* @since 18.08.2016
*/
@CompileStatic
interface IliasItem {
int getId()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ package com.github.thetric.iliasdownloader.service.model
import groovy.transform.CompileStatic
import groovy.transform.Immutable

/**
* Created by Dominik Broj on 01.02.2016.
*
* @author Dominik Broj
* @since 01.02.2016
*/
@Immutable
@CompileStatic
final class LoginCredentials {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ import org.jsoup.Jsoup

import static org.jsoup.Connection.Response

/**
* @author broj
* @since 25.09.2016
*/
@CompileStatic
final class WebParserIliasServiceProvider implements IliasServiceProvider {
private static final String LOGIN_PAGE_NAME = 'login.php'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ package com.github.thetric.iliasdownloader.service.webparser.impl
import com.github.thetric.iliasdownloader.service.exception.IliasException
import groovy.transform.CompileStatic

/**
* @author broj
* @since 18.08.2016
*/
@CompileStatic
final class IliasItemIdStringParsingException extends IliasException {
IliasItemIdStringParsingException(String message) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ package com.github.thetric.iliasdownloader.service.webparser.impl
import com.github.thetric.iliasdownloader.service.exception.IliasException
import groovy.transform.CompileStatic

/**
* @author broj
* @since 18.08.2016
*/
@CompileStatic
final class NoCookiesAvailableException extends IliasException {
NoCookiesAvailableException(String message) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ import org.apache.http.client.fluent.Request
import org.apache.http.impl.client.BasicCookieStore

import java.util.function.Supplier
/**
* @author broj
* @since 31.05.2016
*/

@Log4j2
@CompileStatic
final class WebIliasService implements IliasService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ import java.time.LocalDateTime
import java.time.LocalTime
import java.time.format.DateTimeFormatter

/**
* @author broj
*/
@CompileStatic
final class GermanRelativeDateTimeParser implements RelativeDateTimeParser {
private final DateTimeFormatter timeFormatter = DateTimeFormatter.ofPattern('HH:mm', Locale.GERMAN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ package com.github.thetric.iliasdownloader.service.webparser.impl.course.datetim

import java.time.LocalDateTime

/**
* @author broj
*/
interface RelativeDateTimeParser {
LocalDateTime parse(String dateTimeString)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ package com.github.thetric.iliasdownloader.service.webparser.impl.util
import com.github.thetric.iliasdownloader.service.exception.IliasException
import groovy.transform.CompileStatic

/**
* @author broj
* @since 31.05.2016
*/
@CompileStatic
interface WebIoExceptionTranslator {
IliasException translate(Exception e)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ package com.github.thetric.iliasdownloader.service.webparser.impl.util
import com.github.thetric.iliasdownloader.service.exception.IliasException
import groovy.transform.CompileStatic

/**
* @author broj
* @since 31.05.2016
*/
@CompileStatic
final class WebIoExceptionTranslatorImpl implements WebIoExceptionTranslator {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ import java.util.function.Function

import static org.apache.logging.log4j.Level.TRACE

/**
* @author broj
* @since 14.01.2017
*/
@Log4j2
@TupleConstructor
final class Cli {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@ import groovy.util.logging.Log4j2
import java.nio.file.NoSuchFileException
import java.util.function.Function

import static com.github.thetric.iliasdownloader.service.IliasService.VisitResult.CONTINUE
import static org.apache.logging.log4j.Level.DEBUG

/**
* @author broj
* @since 16.01.2017
*/
@Log4j2
@TupleConstructor
final class IliasCliController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ import org.apache.logging.log4j.Level

import java.util.function.Function

/**
* @author broj
* @since 17.01.2017
*/
@TupleConstructor
@Log4j2
@CompileStatic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import org.apache.logging.log4j.Level

import java.util.function.Function

/**
* @author broj
* @since 16.01.2017
*/
@Log4j2
@TupleConstructor
class SetupController {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
package com.github.thetric.iliasdownloader.cli.console

/**
* @author broj
* @since 16.01.2017
*/
interface ConsoleService {

String readLine(String systemProp, String prompt)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ package com.github.thetric.iliasdownloader.ui.common.prefs

import groovy.transform.CompileStatic

/**
* Created by Dominik Broj on 31.01.2016.
*
* @author Dominik Broj
* @since 31.01.2016
*/
@CompileStatic
interface UserPreferenceService {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ import org.yaml.snakeyaml.Yaml
import java.nio.charset.StandardCharsets
import java.nio.file.Files
import java.nio.file.Path
/**
* Created by Dominik Broj on 31.01.2016.
*
* @author Dominik Broj
* @since 31.01.2016
*/

@CompileStatic
@Log4j2
final class UserPreferenceServiceImpl implements UserPreferenceService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
import java.util.Collection;
import java.util.HashSet;

/**
* @author broj
* @since 16.01.2017
*/
@Data
public final class UserPreferences {
private String iliasServerURL;
Expand Down

0 comments on commit e616428

Please sign in to comment.