Skip to content

Commit 94bfb85

Browse files
committed
Minor refactorings
1 parent 62efe96 commit 94bfb85

File tree

4 files changed

+4
-44
lines changed

4 files changed

+4
-44
lines changed

src/main/java/com/rampatra/misc/RandomTest.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
import java.util.Random;
44

55
/**
6-
* Created by IntelliJ IDEA.
7-
* User: rampatra
8-
* Date: 2/23/15
9-
* Time: 12:48 PM
10-
* To change this template go to Preferences | IDE Settings | File and Code Templates
6+
* @author rampatra
7+
* @since 2/23/15
118
*/
129
public class RandomTest {
1310
public static void main(String[] args) {

src/main/java/com/rampatra/misc/ReplaceAll.java src/main/java/com/rampatra/misc/RegexReplaceAllSpaces.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
package com.rampatra.misc;
22

33
/**
4-
* Created by IntelliJ IDEA.
5-
*
64
* @author rampatra
75
* @since 11/3/15
8-
* @time: 2:21 PM
96
*/
10-
public class ReplaceAll {
7+
public class RegexReplaceAllSpaces {
118

129
public static String replaceAll(String str, String regex, String replacement) {
1310
return str.replaceAll(regex, replacement);

src/main/java/com/rampatra/misc/Regex.java src/main/java/com/rampatra/misc/RegexValidateLatLong.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@
55
import java.util.regex.Pattern;
66

77
/**
8-
* Created by IntelliJ IDEA.
9-
*
108
* @author rampatra
119
* @since 9/12/15
12-
* @time: 1:49 PM
1310
*/
14-
public class Regex {
11+
public class RegexValidateLatLong {
1512

1613
/**
1714
* Validates latitude/longitude in the form (+75, 180) etc.

src/main/java/com/rampatra/misc/SPOJ1.java

-31
This file was deleted.

0 commit comments

Comments
 (0)