Skip to content

Commit

Permalink
Make comments compatible with Java 23
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Aug 23, 2024
1 parent 14f1f16 commit 3dd0198
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spotless {
}
}

/// Error Prone linter
// Error Prone linter

dependencies {
errorprone('com.google.errorprone:error_prone_core:2.30.0')
Expand All @@ -91,7 +91,7 @@ tasks.withType(JavaCompile).configureEach {
}
}

/// Checker Framework pluggable type-checking
// Checker Framework pluggable type-checking

apply plugin: 'org.checkerframework'

Expand Down Expand Up @@ -141,7 +141,7 @@ if (project.hasProperty('cfLocal')) {
}
}

/// Javadoc
// Javadoc

// Turn Javadoc warnings into errors.
javadoc {
Expand Down Expand Up @@ -208,7 +208,7 @@ task updateUserOptions(type: Javadoc, dependsOn: 'assemble') {
title = ''
}

/// Emacs support
// Emacs support

/* Make Emacs TAGS table */
task tags(type: Exec) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/plumelib/icalavailable/ICalAvailable.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private ICalAvailable() {
throw new Error("do not instantiate");
}

/// User options
// User options

/** First date to summarize. */
@Option("first date to summarize")
Expand Down Expand Up @@ -150,7 +150,7 @@ private ICalAvailable() {
/** The TimeZone represented by string {@link #timezone2}. */
static @Nullable TimeZone tz2;

/// Other variables
// Other variables

/** If true, enable debugging output. */
@Option("enable debugging output")
Expand All @@ -168,7 +168,7 @@ private ICalAvailable() {
/** The day-of-week format. */
static DateFormat dfDayOfWeek = new SimpleDateFormat("EEE");

/// Procedures
// Procedures

/**
* Reads command-line options and sets fields
Expand Down

0 comments on commit 3dd0198

Please sign in to comment.