-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Discrepancy resolution + POM version property (#10)
- Loading branch information
1 parent
844185c
commit 3e98642
Showing
8 changed files
with
30 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...p/src/main/java/com/github/mohamedennahdi/objectmorph/app/logic/ObjectmorphComponent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.github.mohamedennahdi.objectmorph.app.logic; | ||
|
||
import java.io.File; | ||
|
||
import org.springframework.stereotype.Component; | ||
|
||
import com.github.mohamedennahdi.objectmorph.renderer.HTMLGenerator; | ||
|
||
@Component | ||
public class ObjectmorphComponent { | ||
|
||
HTMLGenerator htmlGenerator; | ||
|
||
private ObjectmorphComponent() {} | ||
|
||
public HTMLGenerator getHtmlGenerator(File... files) { | ||
htmlGenerator = new HTMLGenerator(files); | ||
return htmlGenerator; | ||
} | ||
} |
22 changes: 0 additions & 22 deletions
22
...p/src/main/java/com/github/mohamedennahdi/objectmorph/app/logic/ObjectmorphSingleton.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.