Skip to content

Commit

Permalink
Package renaming since this never got released before.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Mar 6, 2012
1 parent 291ca36 commit 0959cc1
Show file tree
Hide file tree
Showing 20 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.infradna</groupId>
<groupId>com.cloudbees</groupId>
<artifactId>diff4j</artifactId>
<version>1.0-SNAPSHOT</version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package com.infradna.diff;
package com.cloudbees.diff;

import java.io.ByteArrayOutputStream;
import java.util.*;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package com.infradna.diff;
package com.cloudbees.diff;

import org.apache.commons.io.IOUtils;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.infradna.diff;
package com.cloudbees.diff;

import org.apache.commons.io.IOUtils;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff;
package com.cloudbees.diff;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package com.infradna.diff;
package com.cloudbees.diff;

import java.util.*;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff;
package com.cloudbees.diff;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff;
package com.cloudbees.diff;

import com.infradna.diff.provider.CmdlineDiffProvider;
import com.cloudbees.diff.provider.CmdlineDiffProvider;

import java.io.BufferedReader;
import java.io.PushbackReader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package com.infradna.diff;
package com.cloudbees.diff;

/**
* The patch is invalid or cannot be applied on the specified file.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.infradna.diff;
package com.cloudbees.diff;

import java.io.IOException;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package com.infradna.diff;
package com.cloudbees.diff;

import org.apache.commons.io.IOUtils;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* Pure-Java implementation of diff/patch capability.
*/
package com.infradna.diff;
package com.cloudbees.diff;
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff.provider;
package com.cloudbees.diff.provider;

import com.infradna.diff.Diff;
import com.infradna.diff.Difference;
import com.cloudbees.diff.Diff;
import com.cloudbees.diff.Difference;

import java.io.IOException;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff.provider;
package com.cloudbees.diff.provider;

import com.infradna.diff.Diff;
import com.infradna.diff.Difference;
import com.cloudbees.diff.Diff;
import com.cloudbees.diff.Difference;

import java.io.File;
import java.io.FileWriter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
* made subject to such option by the copyright holder.
*/

package com.infradna.diff.provider;
package com.cloudbees.diff.provider;

import com.infradna.diff.Diff;
import com.infradna.diff.Difference;
import com.cloudbees.diff.Diff;
import com.cloudbees.diff.Difference;

import java.io.IOException;
import java.io.Reader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* Abstraction for configuring how to generate diff separately upfront
* prior to the diff computation.
*/
package com.infradna.diff.provider;
package com.cloudbees.diff.provider;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.netbeans.modules.diff.builtin;

import com.infradna.diff.ContextualPatch;
import com.infradna.diff.ContextualPatch.PatchReport;
import com.cloudbees.diff.ContextualPatch;
import com.cloudbees.diff.ContextualPatch.PatchReport;
import junit.framework.TestCase;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
import java.io.InputStreamReader;
import java.io.StringReader;

import com.infradna.diff.provider.BuiltInDiffProvider;
import com.infradna.diff.Diff;
import com.infradna.diff.provider.DiffProvider;
import com.infradna.diff.Difference;
import com.cloudbees.diff.provider.BuiltInDiffProvider;
import com.cloudbees.diff.Diff;
import com.cloudbees.diff.provider.DiffProvider;
import com.cloudbees.diff.Difference;
import junit.framework.TestCase;

/**
Expand Down Expand Up @@ -77,7 +77,7 @@ private static DiffProvider createDiffProvider() {
provider.setTrimLines(false);
return provider;
// Use CmdlineDiffProvider as a reference to check the test is O.K.
//return com.infradna.diff.provider.CmdlineDiffProvider.createDefault();
//return com.cloudbees.diff.provider.CmdlineDiffProvider.createDefault();
}

// A simple ADD difference
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
*/
package org.netbeans.modules.diff.builtin.visualizer;

import com.infradna.diff.provider.BuiltInDiffProvider;
import com.infradna.diff.Diff;
import com.cloudbees.diff.provider.BuiltInDiffProvider;
import com.cloudbees.diff.Diff;
import junit.framework.TestCase;

import java.io.*;
Expand Down

0 comments on commit 0959cc1

Please sign in to comment.