Skip to content

Commit 26b39e8

Browse files
committed
Removing warnings by using @literal (#885)
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com> (cherry picked from commit 1e5012c)
1 parent 85638c7 commit 26b39e8

File tree

128 files changed

+168
-168
lines changed

Some content is hidden

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

128 files changed

+168
-168
lines changed

java/src/main/java/com/powsybl/dataframe/AbstractDataframeMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import static com.google.common.collect.ImmutableMap.toImmutableMap;
2424

2525
/**
26-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
26+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
2727
*/
2828
public abstract class AbstractDataframeMapper<T, U, C> implements DataframeMapper<T, C> {
2929

java/src/main/java/com/powsybl/dataframe/BaseDataframeMapperBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Base class for builders of mappers. It uses recursive generic pattern to return the actual
2323
* builder class.
2424
*
25-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
25+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
2626
*/
2727
public class BaseDataframeMapperBuilder<T, U, C, B extends BaseDataframeMapperBuilder<T, U, C, B>> {
2828

java/src/main/java/com/powsybl/dataframe/BooleanSeriesMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import java.util.function.Predicate;
1212

1313
/**
14-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
14+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1515
*/
1616
public class BooleanSeriesMapper<T, C> implements SeriesMapper<T, C> {
1717

java/src/main/java/com/powsybl/dataframe/DataframeElementType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package com.powsybl.dataframe;
99

1010
/**
11-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
11+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1212
*/
1313
public enum DataframeElementType {
1414
BUS,

java/src/main/java/com/powsybl/dataframe/DataframeFilter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
/**
1818
* Define filters to apply to a dataframe.
1919
*
20-
* @author Massimo Ferraro <massimo.ferraro@soft.it>
21-
* @author Christian Biasuzzi <christian.biasuzzi@soft.it>
20+
* @author Massimo Ferraro {@literal <massimo.ferraro@soft.it>}
21+
* @author Christian Biasuzzi {@literal <christian.biasuzzi@soft.it>}
2222
*/
2323
public class DataframeFilter {
2424

java/src/main/java/com/powsybl/dataframe/DataframeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Receives series data, is in charge of doing something with it,
1212
* typically writing to a data structure.
1313
*
14-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
14+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1515
*/
1616
public interface DataframeHandler {
1717

java/src/main/java/com/powsybl/dataframe/DataframeMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* The dataframe data can be read by a {@link DataframeHandler},
2020
* and provided by variants of "indexed series".
2121
*
22-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
22+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
2323
*/
2424
public interface DataframeMapper<T, C> {
2525

java/src/main/java/com/powsybl/dataframe/DataframeMapperBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package com.powsybl.dataframe;
99

1010
/**
11-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
11+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1212
*/
1313
public class DataframeMapperBuilder<T, U, C> extends BaseDataframeMapperBuilder<T, U, C, DataframeMapperBuilder<T, U, C>> {
1414

java/src/main/java/com/powsybl/dataframe/DoubleIndexedSeries.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
package com.powsybl.dataframe;
99

1010
/**
11-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
11+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1212
*/
1313
public interface DoubleIndexedSeries {
1414

java/src/main/java/com/powsybl/dataframe/DoubleSeriesMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import java.util.function.ToDoubleBiFunction;
1212

1313
/**
14-
* @author Sylvain Leclerc <sylvain.leclerc at rte-france.com>
14+
* @author Sylvain Leclerc {@literal <sylvain.leclerc at rte-france.com>}
1515
*/
1616
public class DoubleSeriesMapper<T, C> implements SeriesMapper<T, C> {
1717

0 commit comments

Comments
 (0)