Skip to content

Commit

Permalink
Correct case for Diffblue
Browse files Browse the repository at this point in the history
  • Loading branch information
James Wilson committed Sep 14, 2018
1 parent 4c4811f commit c214991
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2016 - 2017 DiffBlue Ltd.
Copyright 2016 - 2018 Diffblue Ltd.

All rights reserved. Redistribution and use in source and binary forms, with
or without modification, are permitted provided that the following
Expand All @@ -14,7 +14,7 @@ conditions are met:
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:

This product includes software developed DiffBlue Limited.
This product includes software developed by Diffblue Limited.

4. Neither the name of the company nor the names of its contributors
may be used to endorse or promote products derived from this software
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/diffblue/javademo/Search.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.apache.commons.codec.digest.DigestUtils;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class Search {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/diffblue/javademo/TicTacToe.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.diffblue.javademo;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class TicTacToe {
/**
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/diffblue/javademo/UserAccess.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import com.diffblue.javademo.serveraccess.DatabaseDao;
import org.bson.Document;

// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class UserAccess {

private String currentUser;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.diffblue.javademo.nestedobjects;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

import com.diffblue.javademo.nestedobjects.subpackage.Item;
import com.diffblue.javademo.nestedobjects.subpackage.Order;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.diffblue.javademo.nestedobjects.subpackage;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class Item {
public int cost;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.diffblue.javademo.nestedobjects.subpackage;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class Order {
public Item item;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import com.mongodb.client.MongoDatabase;
import org.bson.Document;

// Copyright 2016-2018 Diffblue limited. All rights reserved.

public class DatabaseDao {

private static DatabaseDao instance;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/diffblue/javademo/OrderTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.diffblue.javademo;

// Copyright 2016-2017 DiffBlue limited. All rights reserved.
// Copyright 2016-2018 Diffblue limited. All rights reserved.

import com.diffblue.javademo.nestedobjects.subpackage.Order;
import com.diffblue.javademo.nestedobjects.subpackage.Item;
Expand Down

0 comments on commit c214991

Please sign in to comment.