Skip to content

Commit

Permalink
for some reason Parser wasn't public
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed Jun 5, 2018
1 parent c49da20 commit f5017e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
============

[![Build Status](https://travis-ci.org/SingingBush/SDL.svg?branch=master)](https://travis-ci.org/SingingBush/SDL)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.singingbush/sdlang/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.singingbush/sdlang)
[![Coverage Status](https://coveralls.io/repos/github/SingingBush/SDL/badge.svg?branch=master)](https://coveralls.io/github/SingingBush/SDL?branch=master)

> SDLang is a simple and concise way to textually represent data. It has an XML-like structure – tags, values and attributes – which makes it a versatile choice for data serialization, configuration files, or declarative languages. Its syntax was inspired by the C family of languages (C/C++, C#, D, Java, …).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/singingbush/sdl/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*
* @author Daniel Leuck
*/
class Parser {
public class Parser {

private static final String DATE_REGEX = "(\\d+\\/\\d+\\/\\d+)";
private static final String TIME_REGEX = "(\\d+:\\d+(:\\d+)?(.\\d+)?)(-\\w+)?";
Expand Down

0 comments on commit f5017e4

Please sign in to comment.