Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
rickardoberg committed Jun 14, 2012
1 parent ef1de61 commit 7267196
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,19 +466,13 @@ public String valueOf(String rawValue, Config config)

File path = new File(rawValue);

System.out.println( "After separator fix:"+path );
System.out.println( "Is absolute:"+path.isAbsolute() );

if(!path.isAbsolute() && relativeTo != null)
if(!path.isAbsolute() && relativeTo != null)
{
File baseDir = new File(config.get(relativeTo));
path = new File(baseDir, rawValue);
System.out.println( "Relativised:"+path );
}

System.out.println( "Is absolute2:"+path.isAbsolute() );

if(makeCanonical)
if(makeCanonical)
{
try
{
Expand Down

0 comments on commit 7267196

Please sign in to comment.