Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TeeTime-Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nelson Tavares de Sousa
TeeTime-Framework
Commits
8e78da54
Commit
8e78da54
authored
9 years ago
by
Nelson Tavares de Sousa
Browse files
Options
Downloads
Patches
Plain Diff
added legacy class (api change) and let mvn report deprecation
parent
37ceeadb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pom.xml
+1
-0
1 addition, 0 deletions
pom.xml
src/main/java/teetime/stage/util/TextLine.java
+19
-0
19 additions, 0 deletions
src/main/java/teetime/stage/util/TextLine.java
src/main/java/teetime/stage/util/TextLineContainer.java
+1
-1
1 addition, 1 deletion
src/main/java/teetime/stage/util/TextLineContainer.java
with
21 additions
and
1 deletion
pom.xml
+
1
−
0
View file @
8e78da54
...
...
@@ -197,6 +197,7 @@
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.3
</version>
<configuration>
<showDeprecation>
true
</showDeprecation>
<source>
${java.version}
</source>
<target>
${java.version}
</target>
</configuration>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/teetime/stage/util/TextLine.java
0 → 100644
+
19
−
0
View file @
8e78da54
package
teetime.stage.util
;
import
java.io.File
;
/**
* Legacy class: Renamed to {@link TextLineContainer}
*
* @author Nelson Tavares de Sousa
*
*/
@Deprecated
// Set TextLineContainer to final after removal
public
class
TextLine
extends
TextLineContainer
{
public
TextLine
(
final
File
textFile
,
final
String
textLine
)
{
super
(
textFile
,
textLine
);
// TODO Auto-generated constructor stub
}
}
This diff is collapsed.
Click to expand it.
src/main/java/teetime/stage/util/TextLineContainer.java
+
1
−
1
View file @
8e78da54
...
...
@@ -20,7 +20,7 @@ import java.io.File;
/**
* @author Christian Wulf
*/
public
final
class
TextLineContainer
{
public
class
TextLineContainer
{
private
final
File
textFile
;
private
final
String
textLine
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment